-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (96 loc) · 4.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>FRC Team 401 Scouting</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet">
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="container-fluid" id="title-container">
<h1> FRC Team 401 Scouting</h1>
</div>
<nav class="navbar navbar-expand-sm justify-content-center sticky-top">
<ul class="container-sm flex-nowrap align-middle">
<li class="nav-item container-sm">
</li>
<li class="nav-item dropdown container-sm">
<a class="nav-link dropdown-toggle" role="button" data-bs-toggle="dropdown">Pre-Match</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="index.html">Pre-Match</a></li>
<li><a class="dropdown-item" href="auto.html">Autonomous</a></li>
<li><a class="dropdown-item" href="teleop.html">Teleop</a></li>
<li><a class="dropdown-item" href="postmatch.html">Post-Match</a></li>
</ul>
</li>
<li class="nav-item container-sm">
<a href="auto.html">Next</a>
</li>
</ul>
</nav>
<br>
<a href="index2.html"><h1>LONG SCROLL PAGE TEST --></h1></a>
<div class="row">
<div class="col-sm-2"></div>
<div class="col-sm-8" id="middle-col">
<!--<form action="/action_page.php">-->
<div class="row shadow border bg-light p-5 rounded">
<div class="row flex-sm-row">
<div class="mb-3 mt-3">
<label for="scoutInitials" class="form-label">Scout Initials:</label>
<input type="scoutInitials" class="form-control" id="scoutInitials" placeholder="Enter Initials" name="scoutInitials">
</div>
</div>
</div>
<!--</form>-->
<div class="row shadow border bg-light p-5 rounded">
<div class="row flex-sm-row">
<div class="mb-3 mt-3">
<label for="matchNum" class="form-label">Match Number:</label>
<input type="matchNum" class="form-control" id="matchNum" placeholder="####" name="matchNum">
</div>
</div>
</div>
<div class="row shadow border bg-light p-5 rounded">
<div class="row flex-sm-row">
<div class="mb-3 mt-3">
<label for="teamNum" class="form-label">Team Number:</label>
<input type="teamNum" class="form-control" id="teamNum" placeholder="####" name="teamNum">
</div>
</div>
</div>
<div class="row shadow border bg-light p-5 rounded">
<div class="row flex-sm-row">
<label for="robot-position-select-input" class="form-label">Robot Position:</label>
<select class="form-select" aria-label="robot-position-select-input">
<option selected>Select</option>
<option value="1">Red 1</option>
<option value="2">Red 2</option>
<option value="3">Red 3</option>
<option value="4">Blue 1</option>
<option value="5">Blue 2</option>
<option value="6">Blue 3</option>
</select>
</div>
</div>
</div>
<div class="col-sm-2"></div></div>
</div>
<br>
<p><a href="link.html">Set up Google Sheets</a></p>
<br>
<script src="app.js"></script>
<noscript>You need to enable JavaScript to view the full site.</noscript>
</body>
</html>