-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm
198 lines (101 loc) · 4.57 KB
/
Form
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
189
190
191
192
193
194
195
196
197
198
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<form name="StudentRegistrationForm" >
<table cellpadding="2" width="20" align="center"
cellspacing="2">
<center>*Check the details before submitting*</center>
<tr>
<td colspan=2>
<center><h2><u><b>Student Registration Form</u></b></h2></center>
</td>
</tr>
<tr>
<td>Name :</td>
<td><input type=text name="textnames" placeholder="Enter your name here.." ></td>
</tr>
<tr>
<td>Father's Name/Guardian's Name :</td>
<td><input type="text" name="fathername" ></td>
</tr>
<tr>
<td>Blood Group :</td>
<td><select name="Blood Group">
<option selected>choose..</option>
<option value="A+ve">A+ve</option>
<option value="A-ve">A-ve</option>
<option value="O+ve">O+ve</option>
<option value="O-ve">O-ve</option>
<option value="B+ve">B+ve</option>
<option value="B-ve">B-ve</option>
<option value="AB+ve">AB+ve</option>
<option value="AB-ve">AB-ve</option>
</select></td>
</tr>
<tr>
<td>Resedential Address :</td>
<td><input type="text" name="address" ></td>
</tr>
<tr>
<td>PinCode :</td>
<td><input type="number" name="pincode" placeholder="Maxm length is 6" ></td>
<tr>
</tr>
<tr>
<td>EmailId :</td>
<td><input type="email" name="emailid" ></td>
</tr>
<tr>
<td>Gender :</td>
<td><input type="radio" name="sex" value="male" >Male
<input type="radio" name="sex" value="Female" >Female<br>
<input type="radio" name="sex" value="Transgender">Transgender</td>
</tr>
<tr>
<td>MobileNo : +91</td>
<td><input type="text" placeholder="only 10 digit number" name="mobileno" maxlength="10"></td> <!--isse user only 10 digit daalskta h ,wo string bhi daalskta h and number bhi but agar hum type="number"likhte h and maxlength bhi lagate h tb user only number daalskta h but maxlength nahi chalega -->
</tr>
<tr>
<td>DOB :</td>
<td><input type="date" name="dob" ></td>
</tr>
<tr>
<td>Course :</td>
<td><select name="Course">
<option selected>choose..</option>
<option value="B.Tech">B.TECH</option>
<option value="M.Tech">M.TECH</option>
<option value="MBA">MBA</option>
</select></td>
</tr>
<tr>
<td>City :</td>
<td><select name="City">
<option selected>choose..</option>
<option value="New Delhi">NEW DELHI</option>
<option value="Mumbai">MUMBAI</option>
<option value="Gurugram">GURUGRAM</option>
</select></td>
</tr>
<tr>
<td>State :</td>
<td><select Name="State">
<option selected>choose..</option>
<option value="New Delhi">NEW DELHI</option>
<option value="maharashtra">MAHARASHTRA</option>
<option value="HARYANA">HARYANA</option>
</select></td>
</tr>
<td><br><input type="reset"></td>
<td colspan="2"><br><input type="submit" value="Submit Form" /></td>
</tr>
</table>
</form>
</body>
</html>