-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
106 lines (99 loc) · 3.98 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
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Time appending function</title>
<!-- <<<<<<< Updated upstream -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=Roboto|Permanent+Marker|Kalam" rel="stylesheet">
<script type="text/javascript" src="https://code.jquery.com/jquery-3.1.1.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/live/3.0/firebase.js"></script>
<script src="map.js"></script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDtU7Z_r_-qxKBRmrC7TYUbPkYp1ECJJgE&callback=initMap">
</script>
<script src="weatherAjax.js"></script>
</head>
<body>
<div class="big header container" style="
margin-bottom: 0px">
<div class="jumbotron">
<h1>Meet Smarter ®</h1>
</div>
</div>
<div class="container">
<div class= "row">
<div class = "col-lg-4 col-lg-offset-4" id="weather">
</div>
<div class="col-lg-12">
<div id="map">
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-3">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title eventPanel">Add Event</h3>
</div>
<div class="panel-body">
<div id="userName"></div>
<form role="form">
<div class="form-group">
<label for="location-input">Select Location</label>
<select class="form-control" id="location-input">
<option>Please pick a location..</option>
<option>Bennu Coffee</option>
<option>Epoch Coffee</option>
<option>Mozarts Coffee Roasters</option>
<option>Radio</option>
<option>Wright Bros</option>
<option>Thunderbird Coffee</option>
<option>Dominican Joe</option>
<option>Figure 8</option>
</select>
</div>
<div class="form-group">
<label for="arrival-input">Arrival</label>
<input class="form-control" id= "arrival-input" type= "time">
</div>
<div class="form-group">
<label for="departure-input">Departure</label>
<input class="form-control" id="departure-input" type="time">
</div>
<button class="btn btn-default" id="add-userSchedule" type="button">Submit</button>
</form>
<div id="warning" class="col-lg-3 col-md-3 hidden"></div>
</div>
</div>
</div>
<div class="col-lg-1">
</div>
<div class="col-lg-8 col-md-8">
<div class="panel-heading">
<h3 class="panel-title eventPanel">Event Schedule</h3>
</div>
<table class="table" id="eventSchedule">
<thead>
<tr>
<th><b>Location</b></th>
<th><b>User</b></th>
<th><b>Arrival Time</b></th>
<th><b>Departure Time</b></th>
<th><b>Status</b></th>
</tr>
</thead>
<tbody class="tableData">
</tbody>
</table>
<br><br>
</div>
</div>
</div>
<script type="text/javascript" src="login.js"></script>
<script type="text/javascript" src="bundle.js"></script>
</body>
</html>