-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
121 lines (110 loc) · 4.57 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html class="h-full bg-white">
<head>
<meta charset="UTF-8">
<title>Signup - SwiftPeakDevelopment</title>
<!-- Include Tailwind CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<style>
/* Additional styles */
body {
background-color: #1a202c; /* Dark background color */
color: #fff; /* Text color */
margin: 0; /* Remove default margin */
font-family: Arial, sans-serif; /* Set font family */
}
/* Signup form container */
.container {
max-width: 400px;
margin: 20px auto;
padding: 40px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
color: #fff;
text-align: center;
background-color: rgba(0, 0, 0, 0.3); /* Updated background color with opacity */
}
/* Input and button styles */
.input-group {
margin-bottom: 20px;
text-align: left;
}
label {
display: block;
margin-bottom: 8px;
color: #fff;
}
input[type="text"],
input[type="email"],
input[type="password"] {
width: 100%;
padding: 10px;
border-radius: 5px;
border: none;
background-color: rgba(255, 255, 255, 0.7);
color: #000;
}
.submit-btn {
width: 100%;
padding: 10px 20px;
border-radius: 5px;
border: none;
background-color: #4F46E5;
color: #fff;
cursor: pointer;
transition: background-color 0.3s;
}
.submit-btn:hover {
background-color: #3f3696;
}
</style>
</head>
<body>
<nav class="flex justify-center px-6 py-4 bg-gray-800 text-white">
<button class="mx-2 px-4 py-2 bg-gray-700 hover:bg-gray-600 rounded-md focus:outline-none" onclick="location.href='index.html'">Home</button>
<button class="mx-2 px-4 py-2 bg-gray-700 hover:bg-gray-600 rounded-md focus:outline-none" onclick="location.href='about.html'">About</button>
<button class="mx-2 px-4 py-2 bg-gray-700 hover:bg-gray-600 rounded-md focus:outline-none" onclick="location.href='services.html'">Services</button>
<button class="mx-2 px-4 py-2 bg-gray-700 hover:bg-gray-600 rounded-md focus:outline-none" onclick="location.href='status.html'">Status Page</button>
</nav>
<div class="flex justify-center items-center h-full">
<div class="container">
<h1>Signup</h1>
<form action="process_signup.php" method="POST">
<div class="input-group">
<label for="username">Username</label>
<input type="text" id="username" name="username" required>
</div>
<div class="input-group">
<label for="firstName">First Name</label>
<input type="text" id="firstName" name="firstName" required>
</div>
<div class="input-group">
<label for="lastName">Last Name</label>
<input type="text" id="lastName" name="lastName" required>
</div>
<div class="input-group">
<label for="dob">Date of Birth</label>
<input type="text" id="dob" name="dob" required>
</div>
<div class="input-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="input-group">
<label for="discord">Discord</label>
<input type="text" id="discord" name="discord" required>
</div>
<div class="input-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" required>
</div>
<div class="input-group">
<label for="confirmPassword">Confirm Password</label>
<input type="password" id="confirmPassword" name="confirmPassword" required>
</div>
<button type="submit" class="submit-btn">Sign Up</button>
</form>
</div>
</div>
</body>
</html>