forked from the-parvez-16/Gaming-Arena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCreateAccount.html
81 lines (75 loc) · 3.27 KB
/
CreateAccount.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Create Account - Gaming Arena</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="styles.css">
<style type="text/css">
body {
background-color: #f8f9fa;
}
header {
margin-bottom: 20px;
}
footer {
position: relative;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header class="bg-dark text-white p-3">
<div class="container">
<h1 class="h3">Gaming Arena</h1>
<nav class="nav">
<a class="nav-link text-white" href="#">Home</a>
<a class="nav-link text-white" href="#">Games</a>
<a class="nav-link text-white" href="#">Tournaments</a>
<a class="nav-link text-white" href="#">Support</a>
<a class="nav-link text-white" href="#">Login</a>
</nav>
</div>
</header>
<main class="container mt-5">
<h2 class="text-center">Create Your Account</h2>
<form id="create-account-form" class="mt-4">
<div class="form-group">
<label for="username">Username</label>
<input type="text" class="form-control" id="username" placeholder="Choose a username" required>
</div>
<div class="form-group">
<label for="email">Email Address</label>
<input type="email" class="form-control" id="email" placeholder="Enter your email" required>
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" class="form-control" id="password" placeholder="Create a password" required>
</div>
<div class="form-group">
<label for="confirm-password">Confirm Password</label>
<input type="password" class="form-control" id="confirm-password" placeholder="Confirm your password" required>
</div>
<div class="form-check">
<input type="checkbox" class="form-check-input" id="terms" required>
<label class="form-check-label" for="terms">I agree to the Terms and Conditions</label>
</div>
<button type="submit" class="btn btn-primary btn-block mt-3">Create Account</button>
<button type="button" class="btn btn-secondary btn-block mt-2" onclick="window.location.href='login.html'">Cancel</button>
</form>
<div class="text-center mt-4">
<p>Or sign up with:</p>
<button class="btn btn-outline-danger">Google</button>
<button class="btn btn-outline-primary">Facebook</button>
<button class="btn btn-outline-dark">Discord</button>
</div>
</main>
<footer class="bg-dark text-white text-center p-3 mt-5">
<a class="text-white" href="#">Privacy Policy</a> |
<a class="text-white" href="#">Help Center</a> |
<a class="text-white" href="#">Contact Us</a>
</footer>
</body>
</html>