forked from FRC6498/FRSP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
134 lines (133 loc) · 4.28 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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<html lang="en-us">
<head>
<title>First Robotics Scouting Program</title>
<link rel="stylesheet" href="style.css">
<!-- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:bold"> -->
<script src="main.js"></script>
<meta charset="utf-8">
<meta name="author" content="EJ Braswell and Ryan Maxwell">
<meta name="description" content="A web-based scouting program designed to run locally via network hub and work on almost all browsers">
</head>
<body onload="Start()">
<header>
<h1 class="title">First Robotics Scouting Program</h1>
<div class="info">
<span id="teamtag">
<label for="team">Team Number: </label>
<input type="text" name="team">
</span>
<span id="matchtag">
<label for="match">Match Number: </label>
<input type="text" name="match">
</span>
</div>
</header>
<div id="container">
<div class="sandstorm column">
<h4>sandstorm</h4>
<div class="hatches">
<h5>Hatches</h5>
<button type="button">-Top-</button>
<label id="sandHatchTop">0</label>
<button type="button" onclick="buttonClick()">+Top+</button>
<br>
<button type="button">-Mid-</button>
<label id="sandHatchMid">0</label>
<button type="button">+Mid+</button>
<br>
<button type="button">-Low-</button>
<label id="sandHatchLow">0</label>
<button type="button" onclick="incrementValue('sandHatchLow')">+Low+</button>
</div>
<div class="cargo">
<h5>Cargo</h5>
<button type="button">-Top-</button>
<label id="sandCargoTop">0</label>
<button type="button">+Top+</button>
<br>
<button type="button">-Mid-</button>
<label id="sandCargoMid">0</label>
<button type="button">+Mid+</button>
<br>
<button type="button">-Low-</button>
<label id="sandCargoLow">0</label>
<button type="button">+Low+</button>
</div>
<br>
<div class="crossline">
<label for="cross">Crossed Line?</label><br>
<label for="yes">Yes</label>
<input type="radio" name="cross" id="yes" value="yes">
<label for="no">No</label>
<input type="radio" name="cross" id="no" value="no">
</div>
</div>
<div class="teleop column">
<h4>Teleop</h4>
<div class="hatches">
<h5>Hatches</h5>
<button type="button">-Top-</button>
<label id="teleHatchTop">0</label>
<button type="button" onclick="buttonClick()">+Top+</button>
<br>
<button type="button">-Mid-</button>
<label id="teleHatchMid">0</label>
<button type="button">+Mid+</button>
<br>
<button type="button">-Low-</button>
<label id="teleHatchLow">0</label>
<button type="button">+Low+</button>
</div>
<div class="cargo">
<h5>Cargo</h5>
<button type="button">-Top-</button>
<label id="teleCargoTop">0</label>
<button type="button">+Top+</button>
<br>
<button type="button">-Mid-</button>
<label id="teleCargoMid">0</label>
<button type="button">+Mid+</button>
<br>
<button type="button">-Low-</button>
<label id="teleCargoLow">0</label>
<button type="button">+Low+</button>
</div>
</div>
<div class="endgame column">
<h4>Endgame</h4>
<div class="hatches">
<h5>Hatches</h5>
<button type="button">-Top-</button>
<label id="endHatchTop">0</label>
<button type="button">+Top+</button>
<br>
<button type="button">-Mid-</button>
<label id="endgameHatchMid">0</label>
<button type="button">+Mid+</button>
<br>
<button type="button">-Low-</button>
<label id="endgameHatchLow">0</label>
<button type="button">+Low+</button>
</div>
<div class="cargo">
<h5>Cargo</h5>
<button type="button">-Top-</button>
<label id="endCargoTop">0</label>
<button type="button">+Top+</button>
<br>
<button type="button">-Mid-</button>
<label id="endCargoMid">0</label>
<button type="button">+Mid+</button>
<br>
<button type="button">-Low-</button>
<label id="endCargoLow">0</label>
<button type="button">+Low+</button>
</div>
</div>
<div class="submit">
<button type="submit" id="submitButton">Submit</button>
</div>
</div>
</body>
</html>