-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (107 loc) · 5.11 KB
/
index.html
File metadata and controls
129 lines (107 loc) · 5.11 KB
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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<!-- Google Fonts Reference -->
<link href="https://fonts.googleapis.com/css?family=Quantico|Special+Elite|Turret+Road&display=swap"
rel="stylesheet">
<!-- jQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.2.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.2.2/firebase-database.js"></script>
<!-- Moment.js Reference -->
<script src="https://cdn.jsdelivr.net/momentjs/2.12.0/moment.min.js"></script>
<title>Blackhawk Scheduler</title>
</head>
<body>
<!-- Blackhawk Time -->
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="row">
<div class="col-lg-12">
<div class="top-panel">
<strong>
<h1 style="color:whitesmoke">BLACKHAWK SCHEDULER</h1>
<div class="lead">
Time Now
<p id="clock"></p>
</div>
</strong>
</div>
</div>
</div>
<!-- Blackhawk Schedule -->
<div class="panel" id="background">
<div class="panel-schedule">
<strong>
<h3>CURRENT SCHEDULE</h3>
</strong>
<hr class="coolHr">
</div>
<div class="panel-body">
<table class="table table-hover" id="flights-table">
<thead>
<tr>
<th>FLIGHT NAME</th>
<th>DESTINATION</th>
<th>FREQUENCY (min)</th>
<th>NEXT ARRIVAL</th>
<th>Min. AWAY</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<!-- Added Flights Go Here -->
<!-- Used an arbitrary "aF" class to target the font in this panel -->
<div class="panel aF" id="background">
<div class="panel-heading panel-title">
<strong>
<h3>ADD FLIGHT</h3>
</strong>
<hr>
</div>
<div class="panel-body">
<!-- Entry Form -->
<form>
<div class="form-group">
<label for="flight-name-input">Blackhawk Name</label>
<input type="text" class="form-control" id="flight-name-input">
</div>
<div class="form-group">
<label for="destination-input">Destination</label>
<input type="text" class="form-control" id="destination-input">
</div>
<div class="form-group">
<!-- Included an external resource for military time explanation -->
<label for="first-train-input">First Launch Time (HH:mm -<a
href="https://militaryconnection.com/military-time/" target="_blank">Military
time</a>)</label>
<input type="text" class="form-control" id="first-flight-input">
</div>
<div class="form-group">
<label for="frequency-input">Frequency (min)</label>
<input type="text" class="form-control" id="frequency-input">
</div>
<button type="submit" class="btn btn-danger" id="add-flight-btn">
<h3>Submit</h3>
</button>
</form>
</div>
</div>
</div>
</div>
</div>
<script src="assets/javascript/blackHawkScheduler.js"></script>
</body>
</html>