forked from anuragverma108/SwapReads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup1.html
46 lines (36 loc) · 2.39 KB
/
signup1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up</title>
</head>
<body style="font-family: Arial, sans-serif; background-color: #fddde6; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0;">
<div style="background-color: white; padding: 60px; border-radius: 15px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); width: 350px; text-align: center;">
<h2 style="color: #b30000; margin-bottom: 20px;">Create Account</h2>
<!-- Username Field -->
<input type="text" placeholder="Username" style="width: 100%; padding: 10px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 5px; font-size: 16px;">
<!-- Email Field -->
<input type="email" placeholder="Email" style="width: 100%; padding: 10px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 5px; font-size: 16px;">
<!-- Password Field -->
<input type="password" placeholder="Password" style="width: 100%; padding: 10px; margin-bottom: 5px; border: 1px solid #ccc; border-radius: 5px; font-size: 16px;">
<!-- Password Requirements -->
<p style="color: #b30000; font-size: 12px; text-align: left; margin-bottom: 15px; padding-left: 5px;">
• Lowercase & Uppercase <br>
• Number (0-9) <br>
• Special Character (!@#$%^&*) <br>
• At least 8 characters
</p>
<!-- Confirm Password Field -->
<input type="password" placeholder="Confirm Password" style="width: 100%; padding: 10px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 5px; font-size: 16px;">
<!-- Sign in with Google Button -->
<button style="background-color: #4285f4; color: white; border: none; padding: 10px; width: 100%; border-radius: 5px; font-size: 16px; cursor: pointer; margin-bottom: 20px;">
<img src="https://img.icons8.com/color/16/000000/google-logo.png" alt="Google Icon" style="margin-right: 5px; vertical-align: middle;"> Sign In with Google
</button>
<!-- Register Button -->
<button style="background-color: #b30000; color: white; border: none; padding: 10px; width: 100%; border-radius: 5px; font-size: 16px; cursor: pointer;">
Register
</button>
</div>
</body>
</html>