forked from AKluger/Project-One
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaplistselect.html
More file actions
93 lines (76 loc) · 3.17 KB
/
maplistselect.html
File metadata and controls
93 lines (76 loc) · 3.17 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>SAKI Study</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
<!-- jQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Firebase -->
<script src="https://www.gstatic.com/firebasejs/4.12.0/firebase.js"></script>
<!-- For TomTom maps -->
<link rel='stylesheet' type='text/css' href='sdk/map.css'>
<script src='sdk/tomtom.min.js'></script>
<!-- Our CSS file -->
<link rel="stylesheet" type="text/css" media="screen" href="assets/style.css" />
<!-- GOOGLE DISPLAY FONT -->
<link href="https://fonts.googleapis.com/css?family=Fredericka+the+Great" rel="stylesheet">
<!-- GOOGLEFONTS SERIF SUBHEADER -->
<link href="https://fonts.googleapis.com/css?family=PT+Serif" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="jumbotron icy_blue tan_bottom clearance jumbotron_edge">
<h1 class="display-4 fredericka dark_blue">SAKI Study</h1>
<br>
<div class="grey_back rounded">
<p>• Here are your classmates! Click on the icon to see your classmate's name</p>
<p>• Select your classmate by clicking the 'Choose' button from the list below the map</p>
</div> <!-- close grey_back -->
</div>
<!--close jumbotron-->
</div>
<!--close container-->
<div class="container">
<div class="mapContainer">
<div id='map'></div>
</div>
<!-- <br> -->
<div class="jumbotron jumbotron_edge clearance ">
<h4 class="ptserif">Available classmates by distance</h4>
<br>
<form action="">
<!-- Displays students -->
<table class="table table-hover">
<thead>
<tr>
<th scope="col">Name</th>
<!-- <th scope="col">Address</th> -->
<th scope="col">Miles away</th>
<!-- <th scope="col">Hours</th> -->
<th scope="col">Time when they leave</th>
<th scope="col">Select Student</th>
</tr>
</thead>
<tbody></tbody>
</table>
</form>
</div> <!-- close jumbotron -->
<br>
<!-- Footer -->
<footer class="footer">
<div class="text-center">
<span class="text-muted">Copyright©</span>
</div>
</footer>
<br>
</div> <!--close Bootstrap "container" -->
<!-- Moment.js -->
<script src="https://cdn.jsdelivr.net/momentjs/2.12.0/moment.min.js"></script>
<script src="assets/app.js"></script>
</body>
</html>