-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
29 lines (25 loc) · 792 Bytes
/
popup.html
File metadata and controls
29 lines (25 loc) · 792 Bytes
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="stylesheet" href="style.css">
<title>Math Battle Bot</title>
</head>
<body>
<div id="GUIMBB">
<div id="headerMBB">Math Battle Bot v1.0 by agrochal</div>
<form>
<label for="inputTimeMBB">Response time (ms): </label>
<input id="inputTimeMBB" type="number" min="0">
<label for="inputHumanMBB">Human Behaviour: </label>
<input id="inputHumanMBB" type="checkbox">
</form>
<div id="updateButtonMBB" class="buttonMBB">Update</div>
<div id="boxMBB">
<div id="startButtonMBB" class="buttonMBB">Start</div>
<div id="stopButtonMBB" class="buttonMBB">Stop</div>
</div>
</div>
<script src="logic.js"></script>
</body>
</html>