-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddContact.html
46 lines (46 loc) · 1 KB
/
addContact.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
<!DOCTYPE html>
<html>
<head>
<title>Add Contact</title>
<meta charset="utf-8">
</head>
<body>
<table align="center" width="400" border="1px">
<form action="/WebContactSystem/AddContactServlet" method="POST">
<tr>
<th colspan="2">Add Contact</th>
</tr>
<tr>
<td>First Name</td>
<td><input type="text" name="firstname"></td>
</tr>
<tr>
<td>Last Name</td>
<td><input type="text" name="lastname"></td>
</tr>
<tr>
<td>Gender</td>
<td>
<input type="radio" name="gender" value="M">Male
<input type="radio" name="gender" value="F">Female
</td>
</tr>
<tr>
<td>Age</td>
<td><input type="text" name="age"></td>
</tr>
<tr>
<td>Telephone Number</td>
<td><input type="text" name="tel"></td>
</tr>
<tr>
<td>Email</td>
<td><input type="text" name="email"></td>
</tr>
<tr>
<th colspan="2"><input type="submit" value="submit"></th>
</tr>
</form>
</table>
</body>
</html>