-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
181 lines (162 loc) · 5.06 KB
/
Copy pathsignup.html
File metadata and controls
181 lines (162 loc) · 5.06 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<!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>
<style>
/* Styles remain the same as in sign-in version */
/* Added some spacing for the new fields */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', sans-serif;
}
body {
background: #0f172a;
color: #fff;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container {
background: linear-gradient(145deg, #1e293b55, #33415555);
padding: 2.5rem;
border-radius: 20px;
width: 90%;
max-width: 400px;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
border: 1px solid #334155;
box-shadow: 0 8px 32px #00000040;
}
h1 {
text-align: center;
margin-bottom: 2rem;
background: linear-gradient(45deg, #6366f1, #8b5cf6);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.form-group {
margin-bottom: 1.5rem;
}
input {
width: 100%;
padding: 12px;
background: #1e293b;
border: 1px solid #334155;
border-radius: 8px;
color: #fff;
transition: all 0.3s ease;
}
input:focus {
outline: none;
border-color: #6366f1;
box-shadow: 0 0 0 3px #6366f133;
}
button {
width: 100%;
padding: 12px;
background: linear-gradient(45deg, #6366f1, #8b5cf6);
border: none;
border-radius: 8px;
color: #fff;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
}
button:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px #6366f140;
}
.social-login {
margin-top: 2rem;
display: flex;
flex-direction: column;
gap: 1rem;
}
.social-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 10px;
border-radius: 8px;
background: #1e293b;
color: #fff;
text-decoration: none;
transition: all 0.3s ease;
border: 1px solid #334155;
}
.social-btn:hover {
background: #334155;
transform: translateY(-2px);
}
.social-btn img {
width: 20px;
height: 20px;
transition: transform 0.3s ease;
}
.social-btn:hover img {
transform: scale(1.1);
}
.separator {
text-align: center;
margin: 1.5rem 0;
position: relative;
}
.separator::before,
.separator::after {
content: '';
position: absolute;
top: 50%;
width: 45%;
height: 1px;
background: #334155;
}
.separator::before {
left: 0;
}
.separator::after {
right: 0;
}
</style>
</head>
<body>
<div class="container">
<h1>Create Account</h1>
<form>
<div class="form-group">
<input type="text" placeholder="Username" required>
</div>
<div class="form-group">
<input type="email" placeholder="Email" required>
</div>
<div class="form-group">
<input type="password" placeholder="Password" required>
</div>
<div class="form-group">
<input type="password" placeholder="Confirm Password" required>
</div>
<button type="submit">Create Account →</button>
</form>
<div class="separator">or sign up with</div>
<div class="social-login">
<a href="#" class="social-btn">
<img src="https://www.svgrepo.com/show/475656/google-color.svg" alt="Google">
<span>Continue with Google</span>
</a>
<a href="#" class="social-btn">
<img src="https://www.svgrepo.com/show/475654/github-color.svg" alt="GitHub">
<span>Continue with GitHub</span>
</a>
<a href="#" class="social-btn">
<img src="https://piksera.com/storage/branding_media/602c9a71-10a6-4d1b-9279-21b6662356a6.png" alt="Pixera">
<span>Continue with Piksera</span>
</a>
</div>
</div>
</body>
</html>