-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
115 lines (99 loc) · 2.63 KB
/
signup.html
File metadata and controls
115 lines (99 loc) · 2.63 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Signup Interface</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #6a11cb, #2575fc);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.signup-container {
background: #fff;
padding: 2.5rem 3rem;
border-radius: 12px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
width: 100%;
max-width: 400px;
text-align: center;
}
.signup-container h2 {
margin-bottom: 1.5rem;
color: #333;
}
.signup-form {
display: flex;
flex-direction: column;
gap: 1rem;
}
.signup-form label {
text-align: left;
font-weight: 600;
color: #444;
}
.signup-form input {
padding: 0.75rem 1rem;
font-size: 1rem;
border: 2px solid #ddd;
border-radius: 8px;
transition: border-color 0.3s;
}
.signup-form input:focus {
border-color: #2575fc;
outline: none;
}
.signup-form button {
padding: 0.85rem 1rem;
background-color: #2575fc;
border: none;
border-radius: 8px;
color: white;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
margin-top: 1rem;
transition: background-color 0.3s;
}
.signup-form button:hover {
background-color: #1a54d1;
}
.signup-footer {
margin-top: 1.5rem;
font-size: 0.9rem;
color: #666;
}
.signup-footer a {
color: #2575fc;
text-decoration: none;
}
.signup-footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="signup-container">
<h2>Create an Account</h2>
<form class="signup-form">
<label for="fullname">Full Name</label>
<input type="text" id="fullname" name="fullname" placeholder="Mohit Sikarwar" required />
<label for="email">Email Address</label>
<input type="email" id="email" name="email" placeholder="Mohit546@example.com" required />
<label for="password">Password</label>
<input type="password" id="password" name="password" placeholder="Enter your 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">Sign Up</button>
</form>
<div class="signup-footer">
Already have an account? <a href="#">Log in</a>
</div>
</div>
</body>
</html>