-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform2test.html
More file actions
59 lines (54 loc) · 1.49 KB
/
form2test.html
File metadata and controls
59 lines (54 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<title>Register</title>
</head>
<body>
<h1>Register</h1>
<form>
<div>
<label for="Firstname">Firstname</label>
<input type="Text" name="Name" id="Firstname" required>
<label for="Password">Password</label>
<input type="password" name="password" id="password" placeholder="Password" minlength="4" maxlength="9" required />
</div>
<div>
<label for="male">Male</label>
<input type="radio" name="male" id="male">
<label for="female">Female</label>
<input type="radio" name="female" id="female">
<label for="Other">Other</label>
<input type="radio" name="Other" id="Other">
</div>
<div>
<label for="email">Email</label>
<input type="email" name="email" id="email">
<label for="password">Password</label>
<input type="password" name="password" id="password" required="">
</div>
<div>
<label for="birthday">Birthday</label>
<select name="day" id="birthday">
<option value="0" select disabled>Day</option>
<option value="1">1</option>
</select>
<select name="month" id="birthday">
<option value="0" select disabled>Month</option>
<option value="1">jan</option>
</select>
<select name="year" id="birthday">
<option value="0" select disabled>Year</option>
<option value="1995">1995</option>
</select>
</div>
<div>
<label for="agree">I agree to the terms</label>
<input type="checkbox" name="agree" id="agree">
</div>
<div>
<label for="Submit">Submit</label>
<input type="submit" name="submit" id="submit">
</div>
</form>
</body>
</html>