-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (39 loc) · 1.29 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
39
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Wanderer Brush</title>
<link href="style.css" type="text/css" rel="stylesheet">
<link href="statusbar.css" type="text/css" rel="stylesheet">
<script src="support.js"></script>
<script src="script.js"></script>
</head>
<body style="user-select: none;">
<button id="start" onclick="start()">Start</button>
<button id="stop" onclick="stop()" disabled>Stop</button>
<span id="msg" class="statusbar"></span>
<span id="progbar" class="progbar" style="width: 100px;" nodisplay><span id="prog" class="proggreen"> </span><span id="prog2" class="proggrey"> </span></span>
<span id="prognum" nodisplay></span>
<hr>
Mode
<br>
<input type="radio" name="mode" id="castle" checked="checked">Castle
<input type="radio" name="mode">Tribes
<br>
Group Name
<br>
<input id="gn" type="text">
<br>
Tribe Name
<br>
<input id="tn" type="text">
<br>
WebSocket URL
<br>
<input id="wsurl" type="text">
<br>
<span style="color: red;">*</span>Interval
<br>
<input id="cnt" type="number" min="1">
</body>
</html>