-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (24 loc) · 1.09 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>RPG Save Editor</title>
</head>
<body>
<script defer src="index.js"></script>
<h1 contenteditable="true">Upload Your Save File:</h1>
<h4><a href="https://github.com/CharlesGameDev/RPGSaveEditor">GitHub</a><br>Your save file should be called "SMR_Save_VerXXXXXXX"<br>Save JSON files are also accepted.</h4>
<input type="file" id="fileInput" name="filename" class="center-block">
<br>
<button class="center-block" onclick="javascript:submit_file()">Submit File</button>
<br>
<button id="saveFile" style="border-color: blue; visibility: hidden;" class="center-block" onclick="javascript:save_file()">Save File</button>
<br>
<button id="exportJSON" style="border-color: lime; visibility: hidden;" class="center-block" onclick="javascript:save_file_json()">Export JSON</button>
<br>
<div id="editing" class="center-div" style="visibility: hidden;">
</div>
</body>
</html>