-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (69 loc) · 1.95 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
<html>
<head>
<title>deltaT</title>
<link rel="stylesheet" href="css/bootstrap.css">
</head>
<style>
body {
color: #3A359B;
background-color: #D2D7D3;
}
h1 {
text-align: center;
letter-spacing: .1px;
font-style: italic;
}
h3 {
color: #D91E18;
text-align: center;
}
h4 {
text-align: center;
}
h5 {
text-align: center;
}
hr {
color: #ffffff;
line-height: 2px;
}
div {
width: 100%;
text-align: center;
display: inline-block;
}
button {
text-align: center;
margin: auto;
display: block;
}
</style>
<body>
<div style="background-color: #D64541">
<h1><span class="glyphicon glyphicon-plane"></span> DeltaT <span class="glyphicon glyphicon-time"></span></h1>
</div>
<br>
<br>
<h4>Delta (DL) Flight Number: <input type="text" id="fltnum" name="fltnum" maxlength="4" style="color: #003399; width: 50px;"><br> </h4>
<h5>Current Time: <span id="time"></span></h5>
<h5>Scheduled Departure Time: <span id="departureTime"></span></h5>
<h4>TSA Wait Times<span id="airport"></span></h4>
<div id="waitTimes">
</div>
<h4>Current Address: <input type="text" id="address" style="color: #003399; width: 200px; height: 100px;"><br></h4>
<button id="location" >Factor in Traffic</button>
<h4>Method of transportation to Airport?</h4>
<div>
<input type="radio" name="method" id="method" value="car"> Drive<br>
<input type="radio" name="method" id="method" value="transit"> Public Transit<br>
<!-- <input type="radio" name="method" value="uber"> Uber -->
</div>
<br>
<br>
<button id = "submit">Submit</button>
<br>
<br>
<h3>You should leave <span id="totalTime"></span> minutes before your flight departs, at <span id="leaveTime"></span></h3>
<script src="req.js"></script>
</body>
</html>