-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
34 lines (31 loc) · 956 Bytes
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="css/homestyle.css">
</head>
<body>
<div class="logo">
<img src="assets/shuttleitlogo.png" alt="ShuttleIT Logo">
</div>
<div id="menu">
<button onclick="location.href='student-dashboard.html';">Track Shuttles</button>
<div id="eta">
<p>ETA: <span id="eta-time">Calculating...</span></p>
<div id="other-drivers-etas"></div>
</div>
<div id="shuttles-active">
<strong>Shuttles active: </strong><span id="shuttles-online">Calculating...</span>
</div>
</div>
<div class="dark-mode-toggle">
<input type="checkbox" id="darkModeCheckbox" class="checkbox">
<label for="darkModeCheckbox" class="label">
<span class="ball"></span>
</label>
</div>
<script src="js/home.js"></script>
</body>
</html>