forked from OGankit505/newhtml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.html
More file actions
93 lines (90 loc) · 2.82 KB
/
start.html
File metadata and controls
93 lines (90 loc) · 2.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LOGIN PAGE</title>
</head>
<body>
<h1>register form</h1>
<form>
<label>first name: <input type="text" name="firstname" placeholder="firstname" required></label>
<label>first name: <input type="text" name="lastname" placeholder="lastname" required></label>
<br>
<label>male<input type="radio" name="gender" value="male"></label>
<label>female<input type="radio" name="gender" value="female"></label>
<label>other<input type="radio" name="gender" value="other"></label>
<br>
<label>e-mail<input type="e-mail" name="e-mail" placeholder="your e-mail" required></label>
<br>
<label>password<input type="password" name="password" placeholder="your password "pattern="
.{5,10}" required title="please enter password of length 5 to 10"></label>
<br>
<label for="">Birthday: </label>
<select id="birthday" name="month">
<option>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 id="birthday" name="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>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 id="birthday" name="year">
<option>year</option>
<option>2000</option>
<option>2001</option>
<option>2002</option>
<option>2003</option>
<option>2004</option>
<option>2005</option>
</select>
<br>
<label>I agree to the Terms and Conditions
<input type="checkbox" name="submit">
</label>
<br>
<input type="submit" name="submit">
</form>
</body>
</html>