-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscoutingAppPreview.html
63 lines (54 loc) · 1.94 KB
/
scoutingAppPreview.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
<!DOCTYPE html>
<html style="font-family: arial">
<head>
<title>Scouting App</title>
<style>
input {
margin: 2px;
}
select {
margin: 2px;
}
</style>
</head>
<body>
<div id="form">
<div id="gameinfo" style="margin-left: 175px;">
<h2>Game Info</h2>
Team Number: <input type="text"/><br/>
Match Number: <input type="text"/>
<p>-----------------------------------------------------</p>
</div>
<div id="sandstorm">
<h1>Sandstorm</h1>
<h2>Hatch Panels</h2>
Number on Rockets: <input type="text"/><br/>
Location on Rocket: <select><option>N/A</option><option>Close side</option><option>Far side</option></select><br/>
Highest Level of Rocket Scored: <select><option>None</option><option>1</option><option>2</option><option>3</option></select><br/>
Number on Cargo Ship: <input type="text"/><br/>
<h2>Cargo</h2>
Number on Rockets: <input type="text"/><br/>
Highest Level of Rocket Scored: <select><option>None</option><option>1</option><option>2</option><option>3</option></select><br/>
Number on Cargo Ship: <input type="text"/><br/>
<h2>Robot Details</h2>
<input type="checkbox"/> Robot tipped over?<br/>
<input type="checkbox"/> Robot left HAB?<br/>
</div>
<div id="teleop" style="margin-top: -465px; margin-left: 400px;">
<h1>Teleop</h1>
<h2>Hatch Panels</h2>
Number on Rockets: <input type="text"/><br/>
Location on Rocket: <select><option>N/A</option><option>Close side</option><option>Far side</option></select><br/>
Highest Level of Rocket Scored: <select><option>None</option><option>1</option><option>2</option><option>3</option></select><br/>
Number on Cargo Ship: <input type="text"/><br/>
<h2>Cargo</h2>
Number on Rockets: <input type="text"/><br/>
Highest Level of Rocket Scored: <select><option>None</option><option>1</option><option>2</option><option>3</option></select><br/>
Number on Cargo Ship: <input type="text"/><br/>
<h2>Robot Details</h2>
<input type="checkbox"/> Robot tipped over?<br/>
<input type="checkbox"/> Robot left HAB?<br/>
</div>
</div>
</body>
</html>