Please send questions to
st10@humboldt.edu .
<!-- modified from Gittleman, "Internet Applications with the -->
<!-- Java 2 Platform", p. 168 -->
<html>
<head><title>Post Order</title></head>
<body>
<form action="http://sorrel.humboldt.edu:8895/jservf/st10/480jlect15/st10PostOrder"
method=POST>
<strong>Name:</strong>
<input type=text name=name size=20><br>
<strong>Password:</strong>
<input type=password name=password size=12><br>
<strong>Flavor:</strong>
<select name=flavor size=4>
<option>Vanilla
<option>Chocolate
<option>Strawberry
<option>Mint Chocolate
</select><p>
<strong>Toppings:</strong>
<input type=checkbox name=toppings value="Hot Fudge"> Hot Fudge
<input type=checkbox name=toppings value="Butterscotch"> Butterscotch
<input type=checkbox name=toppings value="Nuts"> Nuts
<input type=checkbox name=toppings value="Whipped Cream"> Whipped Cream
<p>
<input type=radio name=place value="Eat here"> Eat here
<input type=radio name=place value="Take out"> Take out
<p>
<input type=submit value="Order">
<input type=reset>
</form>
</body>
</html>