-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
161 lines (139 loc) · 5.43 KB
/
signup.html
File metadata and controls
161 lines (139 loc) · 5.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Facebook Signup</title>
<style>
body {
margin: 0;
background-color: #f0f2f5;
font-family: Arial, sans-serif;
}
.container {
width: 400px;
background: white;
margin: 50px auto;
padding: 20px 30px;
border-radius: 8px;
box-shadow: 0 0 10px #ccc;
}
h1 {
color: #1877f2;
font-weight: 700;
font-size: 32px;
margin-bottom: 10px;
}
p {
font-size: 14px;
color: #606770;
margin-top: 0;
margin-bottom: 20px;
}
input[type="text"],
input[type="email"],
input[type="password"],
select {
width: 100%;
padding: 12px;
margin-bottom: 15px;
border: 1px solid #dddfe2;
border-radius: 6px;
font-size: 16px;
}
label {
font-size: 12px;
font-weight: bold;
color: #606770;
margin-bottom: 5px;
display: block;
}
.gender-group {
margin-bottom: 15px;
}
.gender-group label {
font-weight: normal;
margin-right: 10px;
font-size: 14px;
color: #1c1e21;
}
.gender-group input {
margin-right: 5px;
vertical-align: middle;
}
button {
width: 100%;
background-color: #42b72a;
border: none;
padding: 15px;
color: white;
font-weight: bold;
font-size: 18px;
border-radius: 6px;
cursor: pointer;
}
.terms {
font-size: 12px;
color: #606770;
margin-top: 15px;
}
</style>
</head>
<body>
<div class="container">
<h1>Create an account</h1>
<p>It's quick and easy.</p>
<form action="index.html" method="get">
<label for="firstname">First name</label>
<input type="text" id="firstname" name="firstname" placeholder="First name" required>
<label for="lastname">Surname</label>
<input type="text" id="lastname" name="lastname" placeholder="Surname" required>
<label for="email">Mobile number or email address</label>
<input type="email" id="email" name="email" placeholder="Mobile number or email" required>
<label for="password">New password</label>
<input type="password" id="password" name="password" placeholder="New password" required>
<label>Date of birth</label>
<select name="birth-day" required>
<option value="" disabled selected>Day</option>
<option>1</option><option>2</option><option>3</option><option>4</option><option>5</option>
<option>6</option><option>7</option><option>8</option><option>9</option><option>10</option>
<option>11</option><option>12</option><option>13</option><option>14</option><option>15</option>
<option>16</option><option>17</option><option>18</option><option>19</option><option>20</option>
<option>21</option><option>22</option><option>23</option><option>24</option><option>25</option>
<option>26</option><option>27</option><option>28</option><option>29</option><option>30</option>
<option>31</option>
</select>
<select name="birth-month" required>
<option value="" disabled selected>Month</option>
<option>Jan</option><option>Feb</option><option>Mar</option><option>Apr</option><option>May</option>
<option>Jun</option><option>Jul</option><option>Aug</option><option>Sep</option><option>Oct</option>
<option>Nov</option><option>Dec</option>
</select>
<select name="birth-year" required>
<option value="" disabled selected>Year</option>
<option>2025</option><option>2024</option><option>2023</option><option>2022</option><option>2021</option>
<option>2020</option><option>2019</option><option>2018</option><option>2017</option><option>2016</option>
<option>2015</option><option>2014</option><option>2013</option><option>2012</option><option>2011</option>
<option>2010</option><option>2009</option><option>2008</option><option>2007</option><option>2006</option>
<option>2005</option><option>2004</option><option>2003</option><option>2002</option><option>2001</option>
<option>2000</option><option>1999</option><option>1998</option><option>1997</option><option>1996</option>
<option>1995</option><option>1994</option><option>1993</option><option>1992</option><option>1991</option>
<option>1990</option><option>1989</option><option>1988</option><option>1987</option><option>1986</option>
<option>1985</option><option>1984</option><option>1983</option><option>1982</option><option>1981</option>
<option>1980</option><option>1979</option><option>1978</option><option>1977</option><option>1976</option>
<option>1975</option><option>1974</option><option>1973</option><option>1972</option><option>1971</option>
<option>1970</option>
</select>
<div class="gender-group">
<label><input type="radio" name="gender" value="female" required> Female</label>
<label><input type="radio" name="gender" value="male" required> Male</label>
<label><input type="radio" name="gender" value="custom" required> Custom</label>
</div>
<button type="submit">Sign Up</button>
<p class="terms">
By clicking Sign Up, you agree to our Terms, Data Policy and Cookie Policy. You may receive SMS notifications from us and can opt out at any time.
</p>
</form>
</div>
</body>
</html>