forked from FRC6498/FRSP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
frsp.html
67 lines (64 loc) · 2.4 KB
/
frsp.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<body >
<main>
<div class="container" style="width:100%;height:100%;">
<div class="sandstorm column">
<h3 style="text-decoration: underline; text-align: left;">Sandstorm</h3>
<div class="line">
<label for="cross">Crossed Line?</label><br>
<label id="yesLabel" for="yes" style>Yes</label>
<input type="radio" name="cross" id="yes" value="yes">
<label id="noLabel" for="no">No</label>
<input type="radio" name="cross" id="no" value="no">
</div>
<br>
<div class="telehatch">
<button id="decHatch" class="mainbutton" type="button">-Hatch-</button>
<label id="hatchCount" for="-Hatch-">0</label>
<button id="incHatch" class="mainbutton" type="button">+Hatch+</button>
</div>
<br>
<div class="telecargo">
<button id="decCargo" class="mainbutton" type="button">-Cargo-</button>
<label id="cargoCount" for="-Cargo-">0</label>
<button id="incCargo" class="mainbutton" type="button">+Cargo+</button>
</div>
</div>
<div class="teleop column" style="margin-left:auto;margin-right:auto;">
<h3 style="text-decoration: underline;">Teleop</h3>
<br>
<div class="telehatch">
<button id="decHatch" class="mainbutton" type="button">-Hatch-</button>
<label id="hatchCount" for="-Hatch-">0</label>
<button id="incHatch" class="mainbutton" type="button">+Hatch+</button>
</div>
<br>
<div class="telecargo">
<button id="decCargo" class="mainbutton" type="button">-Cargo-</button>
<label id="cargoCount" for="-Cargo-">0</label>
<button id="incCargo" class="mainbutton" type="button">+Cargo+</button>
</div>
</div>
<div class="endgame column" style="margin-left:auto;margin-right:auto;">
<h3 style="text-decoration: underline;">Teleop</h3>
<br>
<div class="endhatch">
<button id="decHatch" type="button">-Hatch-</button>
<label id="hatchCount" for="-Hatch-">0</label>
<button id="incHatch" type="button">+Hatch+</button>
</div>
<br>
<div class="endcargo">
<button id="decCargo" type="button">-Cargo-</button>
<label id="cargoCount" for="-Cargo-">0</label>
<button id="incCargo" type="button">+Cargo+</button>
</div>
</div>
<div class="enter">
<button id="subButton" type="submit">Submit</button>
</div>
</div>
</main>
</body>
</html>