-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRegistrationForm.html
More file actions
52 lines (47 loc) · 1.2 KB
/
RegistrationForm.html
File metadata and controls
52 lines (47 loc) · 1.2 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
<!--
Function Name: RegistrationForm
Input:--
Output:--
Description:Simple registration from
Date: 03/06/2021
Author: Shubham Lodha -->
<html>
<title>Simple Registration form</title>
<body>
<form>
<h1><b><center>Student Registration Form</center></b> </h1>
<table border='0' align='center'>
<tr>
<td align='center'>Name of Student:</td>
<td><input type="text" name='name'></td>
</tr>
<tr>
<td align='center'>Mobile No: </td>
<td><input type = "text" minlength="10" maxlength = "10" required = "required"></td> <br>
</tr>
<tr>
<td align='center'>Address:</td>
<td><input type='text' name='name'></td>
</tr>
<tr>
<td align='center'>City:</td>
<td><input type='text' name='name'></td>
</tr>
<tr>
<td align='center'>State:</td>
<td><input type='text' name='name'></td>
</tr>
<tr>
<td align='center'>Pincode:</td>
<td><input type = "text" minlength="6" maxlength = "6" required = "required"></td> <br>
</tr>
<tr>
<td align='center'><input type='submit' name='REGISTER' value="SUBMIT"></td>
<td align='center'><input type='reset' name='REGISTER' value="RESET"></td>
</tr>
</table>
</table>
</table>
</body>
</form>
</html>