-
Notifications
You must be signed in to change notification settings - Fork 0
/
OrderForm.html
37 lines (37 loc) · 1.16 KB
/
OrderForm.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>
Configure Your Pizza!
</title>
</head>
<body>
<img alt="Logo" src="logo.gif">
<h2>Configure Your Pizza!</h2>
<form action="PizzaOrder.jsp" method="post">
<table>
<tr>
<th width="33%" bgcolor="#EEEEEE">Size</th>
<th width="66%" bgcolor="#EEEEEE">Ingredients</th>
</tr>
<tr>
<td><input type="radio" name="size" value="small">Small ($10.95)</td>
<td><input type="checkbox" name="mushrooms">Mushrooms</td>
</tr>
<tr>
<td><input type="radio" name="size" value="medium">Medium ($14.95)</td>
<td><input type="checkbox" name="beef">Beef</td>
</tr>
<tr>
<td><input type="radio" name="size" value="large" checked="true">Large ($18.95)</td>
<td><input type="checkbox" name="sausage">Sausage</td>
</tr>
</table>
<p>
All pizzas include our special mix of fresh cheeses.
Extra ingredients cost $1.00 per ingredient.
</p>
<p><input type="Submit" value="Next..."></p>
</form>
</body>
</html>