-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRegistration-Form.html
83 lines (72 loc) · 4 KB
/
Registration-Form.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
<!DOCTYPE html>
<html>
<head>
<title>Student Registration form</title>
</head>
<body><center>
<h2 style="font-size: 100cap";>Login Page</h2>
<form>
<label for="Username">Name :</label>
<input type="text" id="Username" placeholder="Enter your Name" required><br>
<label for="FatherName">Father Name :</label>
<input type="text" id="FatherName" placeholder="Enter the FatherName" required><br>
<label for="PostalAddress">PostalAddress :</label>
<input type="text" id="PostalAddress" placeholder="Enter the PostalAddress" required><br>
<lable for="PersonalAddress">PersonalAddress :</lable>
<input type="text" id="PersonalAddress" placeholder="Enter the PersonalAddress" required><br>
<label for="Sex">Sex :</label>
<input type="radio" id="Male" name="Sex" value="Male" checked>
<label for="Male">Male</label>
<input type="radio" id="Female" name="Sex" value="Female" checked>
<label for="Female">Female</label>
<input type="radio" id="Other" name="Sex" value="Other" checked>
<label for="Other">Other</label><br>
<label for="City">City :</label>
<select id="city" name="city" required>
<option value="" disabled selected>Select</option>
<option value="Chennai">Chennai</option>
<option value="Delhi">Delhi</option>
<option value="Mumbai">Mumbai</option>
<option value="Kolkata">Kolkata</option>
</select><br>
<lable for="Course">Course :</lable>
<select id="Course" name="Course" required>
<option value="" disabled selected>Select</option>
<option value="B.E">B.E</option>
<option value="BCA">BCA</option>
<option value="BBA">BBA</option>
<option value="B.Tech">B.Tech</option>
<option value="MBA">MBA</option>
<option value="MCA">MCA</option>
<option value="M.Tech">M.Tech</option>
<option value="Phd">Phd</option>
</select><br>
<label for="district">District :</label>
<select id="district" name="district" required>
<option value="" disabled selected>Select</option>
<option value="Kanyakumari">Kanyakumari</option>
<option value="Madurai">Madurai</option>
<option value="Coimbatore">Coimbatore</option>
<option value="Trichy">Trichy</option>
</select><br>
<label for="state">State :</label>
<select id="state" name="state" required>
<option value="" disabled selected>Select</option>
<option value="Tamil Nadu">Tamil Nadu</option>
<option value="Kerala">Kerala</option>
<option value="Karnataka">Karnataka</option>
<option value="Andhra Pradesh">Andhra Pradesh</option>
</select><br>
<label for="PinCode">PinCode :</label>
<input type="number" id="PinCode" placeholder="Enter the PinCode" required><br>
<label for="EmailId">EmailId :</label>
<input type="email" id="EmailId" placeholder="Enter your EmailId" required><br>
<label for="DateOfBirth">DOB :</label>
<input type="date" id="DateOfBirth" required><br>
<label for="MobilNumber">MobilNumber :</label>
<input type="number" id="MobilNumber" placeholder="Enter the MobilNumber" required><br><br>
<button type="reset">Reset</button>
<button type="submit">Submit</button>
</form>
</center></body>
</html>