-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsignup.html
More file actions
72 lines (56 loc) · 2.16 KB
/
signup.html
File metadata and controls
72 lines (56 loc) · 2.16 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Registration Form</title>
<link rel="stylesheet" href="styled.css">
<link href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css" rel="stylesheet">
</head>
<body>
<center>
<div class="wrapper">
<form id="signupForm">
<h1>Signup</h1>
<div class="input-box">
<div class="input-field">
<input id="fullName" type="text" placeholder="Full Name" required>
<i class='bx bxs-user'></i>
</div>
<div class="input-field">
<input id="username" type="text" placeholder="Username" required>
<i class='bx bxs-user'></i>
</div>
<div class="input-field">
<input id="email" type="email" placeholder="Email" required>
<i class='bx bxs-envelope'></i>
</div>
<div class="input-field">
<input id="phone" type="number" placeholder="Phone Number" required>
<i class='bx bxs-phone'></i>
</div>
<div class="input-field">
<input id="password" type="password" placeholder="Password" required>
<i class='bx bxs-lock-alt'></i>
</div>
<div class="input-field">
<input id="confirmPassword" type="password" placeholder="Confirm Password" required>
<i class='bx bxs-lock-alt'></i>
</div>
</div>
<label>
<input type="checkbox" id="agree"> I hereby declare that the information provided is true and correct.
</label>
<button type="submit" class="btn">Signup</button>
<label>Already have an account? <a href="login.html">Login</a></label>
<div class="footer">
<p>© 2025 Maximamall. All rights reserved. | Designed by Billy and White Wizard.</p>
</div>
</form>
</div>
</center>
<!-- Signup Logic -->
<script type="module" src="signup.js"></script>
</body>
</html>