-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrobot_attributes.html
54 lines (45 loc) · 1.91 KB
/
robot_attributes.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
<html>
<head>
<title> Robot Attributes </title>
<link rel= "stylesheet" href="css/default.css" type="text/css"></link>
</head>
<body>
<div class= "formb1">
<a href="index.html"><img src="assets/Scouting4.png" alt="Scouting4.png" width="639" height="200"></a>
</br><ul id="header"><li><a href="match_entry.html">Match entry</a></li><li><a href="robot_attributes.html">Robot Data</a></li><li><a href="heatmap.html">Heatmap Enter</a></li></ul><ul id="header"><li><a href="match_view.html">View Matches</a></li><li><a href="php/robot_view.php">View Robots</a></li><li><a href="graph.html">Graphs</a></li><li><a href="analysis.html">Analysis</a></li><li><a href="heatmap_view.html">Heatmap View</a></li></ul>
<h1>Data Entry Form</h1>
<h3>Robot Attributes</h3>
<form action="php/robot_attributes.php" method="post">
Team Number:<input type = "number" name = "teamnum">
<h3>Floor Pickup: </h3>
Does the robot have floor pickup? <input type="checkbox" name="pickup">
</br>
<h3>Shooter:</h3>
Does the Robot Have a Shooter:<input type="checkbox" name="shooter"></input></br>
How much time does it take to line up for a shot in seconds? <input type="number" name="shoot_time"> </input>
</br>
<h3>Ejection/Kicker:</h3>
<textarea name="passing" rows="5" cols="60"></textarea>
</br>
<h3>Drivetrain:</h3>
<textarea name="drive" rows="5" cols="60">Type: </textarea>
</br>
<h3>Catcher: </h3>
Does the robot have a catcher? <input type="checkbox" name="catcher" rows="5" cols="60">
</br>
Can the robot catch over the truss? <input type="checkbox" name="truss_catch" rows="5" cols="60">
</br>
<h3>Strategy</h3>
<p>Does the team prefer offense or defense:</p><textarea name="off_def" rows="5" cols="60"></textarea>
</br>
<select name="comp">
<option value="flr">flr</option>
<option value="buckeye">buckeye</option>
<option value="championships">championships</option>
</select></br>
</br>
<center><input type="submit"></center>
</form>
</div>
</body>
</html>