-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<script type="module" src="index.js" defer></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Login - Code Wiz</title>
</head>
<body>
<div class="login-container">
<div class="login-card">
<h1>Welcome Back to Code Wiz</h1>
<p>Please login to your account</p>
<form id="loginForm">
<div class="input-group">
<label for="email">Email</label>
<input type="email" id="email" placeholder="Enter your email" required>
</div>
<div class="input-group">
<label for="password">Password</label>
<input type="password" id="password" placeholder="Enter your password" required>
</div>
<button type="submit">Login</button>
<p>Don't have an account? <a href="signup.html">Sign up here</a></p>
<p><a href="https://docs.google.com/forms/d/e/1FAIpQLScDcT7MTPQw1eRCOlsu-qElICAUWwkstUOUULQqBZVO-3VsQw/viewform?usp=sf_link">Register now!!!!</a></p>
</form>
</div>
</div>
</body>
</html>