-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
45 lines (37 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TrackGuard Login</title>
<link rel="stylesheet" href="login.css">
<script src="https://accounts.google.com/gsi/client" async defer></script>
<script src="login.js" defer></script>
</head>
<body>
<div class="container">
<div class="login-section">
<h1>Track Guard</h1>
<p class="tagline">"Ensuring Safety, Enhancing Efficiency."</p>
<p>Welcome back! Please login to your account.</p>
<form>
<label for="email">Email Address</label>
<input type="email" id="email" placeholder="[email protected]" required>
<label for="password">Password</label>
<input type="password" id="password" placeholder="***************" required>
<div class="options">
<label><input type="checkbox"> Remember Me</label>
<a href="forgot.html" class="forgot">Forgot Password?</a>
</div>
<button type="submit" class="login-btn" onclick="window.location.href='home.html'">Login</button>
<button type="button" class="signup-btn" onclick="window.location.href='signup.html'">Sign Up</button>
<p>Or login with</p>
<div id="google-signin-button"></div>
</form>
</div>
<div class="illustration-section">
<a href="2.png"><img src="2.png" alt="Illustration of a delivery person" class="illustration"></a>
</div>
</div>
</body>
</html>