-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (38 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="module" src="login.js"></script>
<title>ShuttleIt - Login</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="logo">
<img src="assets/shuttleitlogo.png" alt="ShuttleIt Logo">
</div>
<div class="login-container">
<h2>ShuttleIt Login</h2>
<div class="student-login">
<h3>Student Login</h3>
<button id="googleLogin">Login with Google</button>
</div>
<div class="driver-login">
<h3>Driver Login</h3>
<form id="driverLoginForm">
<label for="driverUsername">Username:</label><br>
<input type="text" id="driverUsername" name="username" autocomplete="username" required><br>
<label for="driverPassword">Password:</label><br>
<input type="password" id="driverPassword" name="password" autocomplete="current-password" required><br>
<button type="submit">Login</button>
</form>
</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>
</body>
</html>