-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
38 lines (35 loc) · 1.37 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
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Convert Emulation Station Games List to Attract Mode emulator.txt</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<main>
<h1 id="heading">Attract Mode Games List Tools</h1>
<div class="status">
<p class="stat">Please wait. </p>
<ul class="gamesList"></ul>
</div>
<div id="upload">
<h2 class="currentaction">Upload ES Game list</h2>
<input type="checkbox" id="amlist" name="AttractModeList" value="noES">
<label for="AttractModeList">I want to append meta data to an Attract Mode List</label>
<p class="currentgame"></p>
<form enctype="multipart/form-data" method="post" id="upload-form">
<input name="arcade" id="emulator" value="Arcade"> Emulator name<br><br>
<input type="file" name="odfxml" id="odfxml" />
</form>
</div>
<div class="notes">
<ul class="pathNotes"></ul>
</div>
</main>
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="js/GamesListCoverter.js"></script>
<script src="js/mameXMLExtractorUtil.js"></script>
<script src="js/gamesListParser.js"></script>
<script src="js/game.js"></script>
</body>
</html>