<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<form name="form1" method="post" action="http://cuip.uchicago.edu/cgi-bin/CGI-Perl-cookbook/FormHandler/FormHandler.pl">
  <p>What is your name?</p>
  <p> 
    <input type="text" name="textfield">
  </p>
  <p>What is your email address?</p>
  <p>
    <input name="email" type="text" id="email" value="noemail@cuip.uchicago.edu">
  </p>
  <p>Which sandwhich did you eat?</p>
  <p> 
    <select name="lunch" id="lunch">
      <option>Turkey</option>
      <option>Chicken</option>
      <option>Salmon</option>
      <option>Apple</option>
    </select>
  </p>
  <p>What will you being doing this weekend?</p>
  <p> 
    <input type="radio" name="weekend" value="relax">
    Relaxing</p>
  <p> 
    <input type="radio" name="weekend" value="town">
    Going out of town</p>
  <p> 
    <input type="radio" name="weekend" value="web">
    Working on my curriculum web</p>
  <p> 
    <input type="radio" name="week" value="tv">
    Watching TV &amp; eating bon bons</p>
  <p>Which participants are creating a curriculum about Mali's chocolate?</p>
  <p> 
    <textarea name="textarea"></textarea>
  </p>
  <p>How do you feel about your five minute presentation today? (Check all that 
    apply)</p>
  <p> 
    <input name="feelings" type="checkbox" id="feelings" value="checkbox">
    excited</p>
  <p> 
    <input type="checkbox" name="checkbox2" value="checkbox">
    nervous</p>
  <p> 
    <input type="checkbox" name="checkbox3" value="checkbox">
    scared </p>
  <p> 
    <input type="checkbox" name="checkbox4" value="checkbox">
    anxious </p>
  <p> 
    <input type="checkbox" name="checkbox5" value="checkbox">
    What 5 minute presentation?</p>
  <p> 
     <input type="hidden" name="recipient" value="meccamurphy@yahoo.com">
          <input type="hidden" name="subject" value="Test">
	<input type="submit" name="Submit" value="Submit">
    <input type="reset" name="Submit2" value="Reset">
  </p>
  <p>&nbsp;</p>
</form>
</body>
</html>
