forked from LyndonArmitage/HTML5PokemonSaveReader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (28 loc) · 1.03 KB
/
index.html
File metadata and controls
30 lines (28 loc) · 1.03 KB
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
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<title>HTML5 Pokémon Save File Viewer</title>
<link href='http://fonts.googleapis.com/css?family=VT323' rel='stylesheet' type='text/css'>
<link type="text/css" href="css/main.css" media="all" rel="stylesheet">
</head>
<body>
<h1>Pokémon Save File Viewer</h1>
<div id="container">
<div id="inputSection">
<div id='inputLabel' class="btn">Select Save File</div>
<!--<div id='saveButton' class="btn">Save Out File</div>-->
<input type='file' id='fileInput' name='savefile' style='display: none'/>
</div>
<div id="outputSection">
<h2>Select a Save File to begin.</h2>
</div>
</div>
<div id="footer">
Source available on <a href="https://github.com/LyndonArmitage/HTML5PokemonSaveReader" target="_blank">GitHub</a>
</div>
<script type="text/javascript" src="js/lib/jquery-2.0.2.min.js"></script>
<script type="text/javascript" src="js/sav_parser.js"></script>
<script type="text/javascript" src="js/background.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>