-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (80 loc) · 3 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="veiwport">
<title> Trains2Go Schedule </title>
<!--Firebase -->
<script src="https://www.gstatic.com/firebasejs/3.7.5/firebase.js"> </script>
<!-- JQuery -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha256-k2WSCIexGzOj3Euiig+TlR8gA0EmPjuc79OEeY5L45g="
crossorigin="anonymous"></script>
<!-- bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!--moment.js -->
<script src="https://cdn.jsdelivr.net/momentjs/2.12.0/moment.min.js"></script>
<!-- styles -->
<link href="https://fonts.googleapis.com/css?family=Abril+Fatface" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<div class="container">
<br>
<div class="jumbotron">
<h1 class="text-center">Trains2Go Schedule</h1>
<br>
<div id="clockbox"></div>
</div>
<div class="row">
<div class="col-md-10 col-md-offset-1 col-lg-10 col-lg-offset-1">
<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title">Current Train Schedule</h3>
</div>
<div class="panel-body">
<table class="table">
<tr>
<th class="header"> Train Name</th>
<th class="header">Destination</th>
<th class="header">Frequency (Min)</th>
<th class="header"> Next Arrival</th>
<th class="header"s>Minutes Away</th>
</tr>
</table>
</div>
</div>
<div class="row">
<div class="col-md-10 col-md-offset-1 col-lg-10 col-lg-offset-1">
<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title">Add Train</h3>
</div>
<div class="panel-body">
<form role="form">
<div class="form-group">
<label for="text">Train Name:</label>
<input type="text" class="form-control" id="nameinput">
</div>
<div class="form-group">
<label for="text">Destination:</label>
<input type="text" class="form-control" id="destinput">
</div>
<div class="form-group">
<label for="text">First Train Time (Military Time):</label>
<input type="text" class="form-control" id="timeinput">
</div>
<div class="form-group">
<label for="text">Frequency(Min):</label>
<input type="number" class="form-control" id="freqinput">
</div>
<button type="submit" class="btn btn-info" id="submit">Submit</button>
</form>
</div>
</div>
</div>
</div>
<!--JS -->
<script type="text/javascript" src="assets/javascript/app.js"></script>
</body>
</html>