-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
195 lines (168 loc) · 8.22 KB
/
index.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
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
182
183
184
185
186
187
188
<!DOCTYPE html>
<html>
<head>
<title>Registration Formgit</title>
<link rel="stylesheet" type="text/css" href="./index.css">
</head>
<body>
<form id="form">
<div class="container">
<div class="row">
<h1 class="header">Registration Form</h1>
<p>Please fill in this form to create an account.</p>
<section>
<label>
First Name:
<input text="First Name"Placeholder="Enter First Name" type="FirstName" required>
Last Name:
<input text="Last Name"Placeholder="Enter Last Name" type="LastName" required>
</label>
</section>
<section>
<label>
Male:
<label for="Male" id="Male"></label>
<input name="Gender Choice" id="Male"type="radio">
Female:
<label for="Female" id="Female"></label>
<input name="Gender Choice" id="Female"type="radio">
Others:
<label for="Others" id="Others"></label>
<input name="Gender Choice" id="Others"type="radio">
</label>
</section>
<section>
<label>
Email:
<input text="Email" Placeholder="Enter Email" type="Email" required>
</label>
<label>
Password:
<input text="Password" placeholder="Enter Password" type="password" pattern=".{5,10}" required title="5 to 10 characters">
</label>
<label>
Password:
<input text="Password" placeholder="Re-Enter Password" type="password" pattern=".{5,10}" required title="5 to 10 characters">
</label>
</section>
<section>
<label>
Birthday:
<select text="Birthday">
<option>Month</option>
<option>January</option>
<option>February</option>
<option>March</option>
<option>April</option>
<option>May</option>
<option>June</option>
<option>July</option>
<option>August</option>
<option>September</option>
<option>October</option>
<option>November</option>
<option>December</option>
</select>
<label>
Day:
<select text="Day">
<option>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>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>
<label>
Year:
<select Text="Year">
<option>Year</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>
</select>
</label>
</section>
<section>
<label>
<p>By creating an account you agree to our <a href="#">Terms & Privacy</a>.</p>
<label for="agree">I agree to the terms and conditions</label>
<input for="Terms and Conditions" id="T&C" type="checkbox">
</label>
</section>
<section>
<button type="submit" class="submit">Submit</button>
</section>
</div>
<div class="container signin">
<p>Already have an account? <a href="#">Sign in</a>.</p>
</div>
</div>
</form>
</body>
</html>
<!--<form action="action_page.php">
<div class="container">
<h1>Register</h1>
<p>Please fill in this form to create an account.</p>
<hr>
<label for="email"><b>Email</b></label>
<input type="text" placeholder="Enter Email" name="email" id="email" required>
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="psw" id="psw" required>
<label for="psw-repeat"><b>Repeat Password</b></label>
<input type="password" placeholder="Repeat Password" name="psw-repeat" id="psw-repeat" required>
<hr>
<p>By creating an account you agree to our <a href="#">Terms & Privacy</a>.</p>
<button type="submit" class="registerbtn">Register</button>
</div>
<div class="container signin">
<p>Already have an account? <a href="#">Sign in</a>.</p>
</div>
</form>-->