This repository was archived by the owner on May 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathregisForm.html
More file actions
executable file
·70 lines (69 loc) · 1.85 KB
/
regisForm.html
File metadata and controls
executable file
·70 lines (69 loc) · 1.85 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
60
61
62
63
64
65
66
67
68
69
70
<html>
<head>
<title>Login</title>
</head>
<body>
<center>
<form name="login" action=login.php method="POST">
<fieldset>
<legend align="center">Registeration form</legend>
<table>
<tr>
<td>Student Name</td>
<td><input type=text name="sname" value=""></td>
</tr>
<tr>
<td>Class</td>
<td><input type=text name="clas" value=""></td>
</tr>
<tr>
<td>Father's Name</td>
<td><input type=text name="fname" value=""></td>
</tr>
<tr>
<td>Father's Contact No.</td>
<td><input type=number name="fc" value=""></td>
</tr>
<tr>
<td>Mother's Name</td>
<td><input type=text name="mname" value=""></td>
</tr>
<tr>
<td>Contact No.</td>
<td><input type=number name="pc" value=""></td>
</tr>
<tr>
<td>DOB</td>
<td><input type=date name="dob" value=""></td>
</tr>
<tr>
<td>Gender</td>
<td><input type=radio name="gen" value="Male">Male <input type=radio name="gen" value="Female">Female</td>
</tr>
<tr>
<td>Email</td>
<td><input type=Email name="mail" value=""></td>
</tr>
<tr>
<td>Address</td>
<td><input type=text name="add" value=""></td>
</tr>
<tr>
<td>City</td>
<td><input type=text name="city" value=""></td>
</tr>
<tr>
<td>State</td>
<td><input type=text name="state" value=""></td>
</tr>
<tr>
<td>Pin</td>
<td><input type=number name="pin" value=""></td>
</tr>
</table>
<input type="submit" width="100" height="48" value="Submit">
</fieldset>
</form>
</center>
</body>
</html>