-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1-chaqar-registration.html
98 lines (94 loc) · 3.31 KB
/
1-chaqar-registration.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CHAQAR Registration</title>
<style>
body {
background-color: #000; /* Black background */
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
color: #fff; /* White text */
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.registration-container {
background-color: #1c1c1c; /* Dark gray background */
padding: 30px;
border-radius: 8px;
width: 400px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.registration-container h1 {
text-align: center;
color: #00bcd4; /* Cyan for tech vibe */
margin-bottom: 20px;
}
.registration-container form {
display: flex;
flex-direction: column;
gap: 15px;
}
.registration-container label {
font-weight: bold;
}
.registration-container input[type="text"],
.registration-container input[type="email"],
.registration-container input[type="password"] {
width: 100%;
padding: 10px;
border: 1px solid #444;
border-radius: 4px;
background: #2b2b2b;
color: #fff;
}
.registration-container button {
padding: 10px;
border: none;
border-radius: 4px;
background-color: #00bcd4;
color: #000;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease;
}
.registration-container button:hover {
background-color: #0097a7; /* Darker cyan */
}
.registration-container p {
text-align: center;
margin-top: 10px;
font-size: 14px;
}
.registration-container p a {
color: #00bcd4;
text-decoration: none;
}
.registration-container p a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="registration-container">
<h1>Create Your CHAQAR Account</h1>
<form action="/register" method="post">
<label for="username">Username</label>
<input type="text" id="username" name="username" placeholder="Enter your username" required>
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="Enter your email" required>
<label for="password">Password</label>
<input type="password" id="password" name="password" placeholder="Create a password" required>
<label for="confirm-password">Confirm Password</label>
<input type="password" id="confirm-password" name="confirm-password" placeholder="Re-enter your password" required>
<button type="submit">Register</button>
</form>
<p>Already have an account? <a href="/login">Login here</a></p>
</div>
</body>
</html>