-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
38 lines (38 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up | GameHaven</title>
<link rel="stylesheet" href="signup.css">
</head>
<body>
<div class="auth-container">
<div class="auth-box">
<h2>Join the GameHaven Community!</h2>
<form action="/signup" method="POST">
<div class="form-group">
<label for="username">👤 Username</label>
<input type="text" id="username" name="username" placeholder="Choose a username" required>
</div>
<div class="form-group">
<label for="email">📧 Email</label>
<input type="email" id="email" name="email" placeholder="Enter your email" required>
</div>
<div class="form-group">
<label for="password">🔑 Password</label>
<input type="password" id="password" name="password" placeholder="Create a password" required>
</div>
<div class="form-group">
<label for="confirm-password">🔒 Confirm Password</label>
<input type="password" id="confirm-password" name="confirm-password" placeholder="Confirm your password" required>
</div>
<div class="form-footer">
<button type="submit" class="auth-btn">Sign Up</button>
<p class="auth-switch">Already have an account? <a href="signin.html">Sign In</a></p>
</div>
</form>
</div>
</div>
</body>
</html>