-
Notifications
You must be signed in to change notification settings - Fork 1
/
signup.html
53 lines (52 loc) · 2.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Signup</title>
<link rel="stylesheet" href="../../css/signup.css">
</head>
<body>
<div class="background-image">
<div class="overlay"></div>
<div class="container">
<div class="signup-content">
<div class="form-content">
<h1>Get started with your free account</h1>
<div class="nav">
<a href="../login.html">SIGN IN</a>
<a href="../signup.html" class="active">SIGN UP</a>
</div>
<form id="signupForm">
<div class="forms">
<div class="form-group">
<label for="username">Username:</label>
<input type="text" id="username" name="username" required placeholder="Enter your full name...">
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required placeholder="Enter your email address...">
</div>
<div class="form-group">
<label for="password">Create Your password:</label>
<input type="password" id="password" name="password" required placeholder="Choose a Secure password">
</div>
<div class="form-group">
<label for="confirmPassword">Confirm Your password:</label>
<input type="password" id="confirmPassword" name="confirmPassword" required placeholder="Confirm Your Password">
</div>
<div class="checkbox-group">
<input type="checkbox" id="agree" name="agree" required>
<label class="checkbox-label" for="agree">I agree to the <a href="#">terms and conditions</a></label>
</div>
</div>
<button type="submit">Signup</button>
</form>
<p>Already have an account? <a href="../login.html">Login</a></p>
</div>
</div>
</div>
</div>
<script src="../../js/signup.js"></script>
</body>
</html>