-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathRegistration_form.html
More file actions
47 lines (43 loc) · 1.3 KB
/
Registration_form.html
File metadata and controls
47 lines (43 loc) · 1.3 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
<html>
<head>
<title>Registration Page</title>
</head>
<body>
<h1>Registration Page</h1>
<fieldset>
<legend> Info</legend>
<form action="de.php" method="post" enctype="multipart/form-data">
<table>
<tr>
<td>First Name : </td>
<td><input type="text" name="fname" /></td>
</tr>
<tr>
<td>Last Name : </td>
<td><input name="lname" /></td>
</tr>
<tr>
<td>Email : </td>
<td><input type="text" name="email" /></td>
</tr>
<tr>
<td>Contact No : </td>
<td><input type="text" name="con_no" /></td>
</tr>
<tr>
<td>Gender : </td>
<td>Male<input type="radio" name="gender" value="Male"/> Female <input type="radio" name="gender" value="Female"/></td>
</tr>
<tr>
<td>Photo : </td>
<td><input type="file" name="photo"/></td>
</tr>
<tr>
<td>Submit</td>
<td><input type="submit" value="submit"/></td>
</tr>
</table>
</form>
</fieldset>
</body>
</html>