-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + TS</title>
</head>
<body>
<div id="app"></div>
<div id="menu">
<div id="settings">
<label for="player-select"> Choose your player. </label>
<select name="players" id="player-select">
<option value="">-- Please select a pleyer. --</option>
<option value="red">Red Tank</option>
<option value="dark">Dark Tank</option>
<option value="green">Green Tank</option>
<option value="sand">Sand Tank</option>
<option value="blue">Blue Tank</option>
</select>
<button id="open-dialog">Select an executable file</button>
</div>
</div>
<button id="start">Start!</button>
<button onclick="{location.reload();}">Reload</button>
<script type="module" src="/src/main.ts"></script>
</body>
</html>