-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathsignup.html
54 lines (51 loc) · 1.97 KB
/
signup.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
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Signup Page</title>
<link rel="stylesheet" href="signup.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<!-- Login Page -->
<div id="login-page">
<h1>Login</h1>
<p>Welcome back! Please login to continue.</p>
<form id="login-form">
<div class="form-group">
<label for="login-email">Email</label>
<input type="email" id="login-email" placeholder="Enter your email" required>
</div>
<div class="form-group">
<label for="login-password">Password</label>
<input type="password" id="login-password" placeholder="Enter your password" required>
</div>
<button type="submit" class="btn">Login</button>
</form>
<p>Don't have an account? <a href="#" id="show-signup">Sign Up</a></p>
</div>
<!-- Signup Page -->
<div id="signup-page" style="display: none;">
<h1>Sign Up</h1>
<p>Create a new account to get started.</p>
<form id="signup-form">
<div class="form-group">
<label for="signup-email">Email</label>
<input type="email" id="signup-email" placeholder="Enter your email" required>
</div>
<div class="form-group">
<label for="signup-password">Password</label>
<input type="password" id="signup-password" placeholder="Create a password" required>
</div>
<div class="form-group">
<label for="confirm-password">Confirm Password</label>
<input type="password" id="confirm-password" placeholder="Confirm your password" required>
</div>
<button type="submit" class="btn btn-secondary">Sign Up</button>
</form>
<p>Already have an account? <a href="#" id="show-login">Login</a></p>
</div>
<script src="signup.js"></script>
</body>
</html>