-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.html
56 lines (56 loc) · 1.57 KB
/
welcome.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
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Benefits</title>
<link type="text/css" rel="stylesheet" href="css/styles.css"/>
</head>
<body>
<h3>
Welcome to your company benefits!
</h3>
<p><b>
Select which benefits you would like to see:
</b></p>
<form action="./servlet" method=POST name=BenefitsForm>
<table border=0 cellspacing=3 cellpadding=0 width="60%">
<tr>
<td width="5%">
<INPUT TYPE="checkbox" NAME="benefit" VALUE="holiday" ALIGN="right">
</td>
<td width="95%" ALIGN="left">
View Holiday Schedule
</td>
</tr>
<tr>
<td width="5%">
<INPUT TYPE="checkbox" NAME="benefit" VALUE="health" ALIGN="right">
</td>
<td width="95%" ALIGN="left">
View Health Care Options
</td>
</tr>
<tr>
<td width="5%">
<INPUT TYPE="checkbox" NAME="benefit" VALUE="vision" ALIGN="right">
</td>
<td width="95%" ALIGN="left">
View Vision Options
</td>
</tr>
<tr>
<td width="5%">
<INPUT TYPE="checkbox" NAME="benefit" VALUE="dental" ALIGN="right">
</td>
<td width="95%" ALIGN="left">
View Dental Options
</td>
</tr>
<tr>
<td colspan=2>
<INPUT TYPE="submit" VALUE="Get Information">
</td>
</tr>
</table>
</form>
</body>
</html>