-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAssignment5.html
80 lines (79 loc) · 1.94 KB
/
Assignment5.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
<!DOCTYPE html>
<html>
<head>
<title>MMIL--Registration</title>
</head>
<body>
<h1>MMIL-UNOFFICIAL</h1>
<br><br>
<form>
<label for="First Name">First Name:</label>
<input id="First Name" placeholder="Rahul" type="text" name="First Name" required>
<br>
<label for="Last Name">Last Name:</label>
<input id="Last Name" placeholder="Yadav" type="text" required>
<br><br>
<label for="Email">Email:</label>
<input id="Email" type="Email" placeholder="Abc@def.com" required><br>
<label for="Password">Password:</label>
<input id="Password" minlength="8" type="Password" required>
<br><br>
Select ur gender:<br>
Male: <input type="radio" value="
M" name="gender"><br>
Female: <input type="radio" value="F" name="gender"><br>
Other: <input type="radio" value="O" name="gender"><br></br>
Birthday:<br>
Day-
<select>
<option>01</option>
<option>02</option>
<option>03</option>
<option>04</option>
<option>05</option>
<option>06</option>
<option>07</option>
<option>08</option>
<option>09</option>
<option>10</option>
</select>
Month-
<select>
<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>
Year-
<select>
<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>
</select><br><br>
<br>Why you want to join MMIL-<br>
<textarea rows="5" cols="30"></textarea>
<br><br>
I Agree to all T&C*
<input type="radio"><br><br>
<button>Let's go</button>
</form>
</body>
</html>