-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (50 loc) · 1.95 KB
/
index.html
File metadata and controls
54 lines (50 loc) · 1.95 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!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" />
<script defer type="module" src="./src/main.ts"></script>
<title>slowroute</title>
</head>
<body>
<label for="from">From</label>
<select id="from"></select>
<button id="from-random">Random</button>
<br />
<label for="to">To</label>
<select id="to"></select>
<button id="to-random">Random</button>
<br />
<label for="route-by-air">Air</label>
<input type="checkbox" id="route-by-air" /> |
<label for="route-by-bus">Bus</label>
<input type="checkbox" id="route-by-bus" /> |
<label for="route-by-rail">Rail</label>
<input type="checkbox" id="route-by-rail" /> |
<label for="route-by-sea">Sea</label>
<input type="checkbox" id="route-by-sea" /> |
<label for="route-by-spawn-warp">Spawn Warp</label>
<input type="checkbox" id="route-by-spawn-warp" /> |
<label for="route-by-traincarts">TrainCarts</label>
<input type="checkbox" id="route-by-traincarts" /> |
<label for="route-by-warp">Warp</label>
<input type="checkbox" id="route-by-warp" /> |
<label for="route-by-vehicles">Vehicles</label>
<input type="checkbox" id="route-by-vehicles" /> |
<label for="route-by-cart">Cart</label>
<input type="checkbox" id="route-by-cart" />
<br />
<label for="prox-walk">Walking/Running</label>
<input type="radio" id="prox-walk" name="prox" /> |
<label for="prox-walk10">Walking/Running (speed 10)</label>
<input type="radio" id="prox-walk10" name="prox" /> |
<label for="prox-fly">Flying</label>
<input type="radio" id="prox-fly" name="prox" /> |
<label for="prox-fly10">Flying (speed 10)</label>
<input type="radio" id="prox-fly10" name="prox" />
<br />
<button id="go">Go</button>
<div id="out"></div>
</body>
</html>