Mailform Template
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title> My Page Title </title>
<link rel="stylesheet" type="text/css" media="screen" href="myStyle.css" />
</head>
<body>
<div class="main">
<div class="head">
You could put some big text or a picture/logo-ish here.
Somewhere you need to include your gburdell3 or gtx999x.
</div>
<div class="content">
<form method="post" action="/cgi-bin/mailform">
<p>
<!-- Form header and Send-To Information -->
<input type="hidden" name="mform-email" value="gtxXXXx@prism.gatech.edu" />
<input type="hidden" name="mform-subject" value="Test Data" />
<input type="hidden" name="mform-response"
value="http://www.prism.gatech.edu/~gtxXXXx/thankyou.html" />
<input type="hidden" name="mform-encoding" value="text" />
<!-- Main Part of the Form -->
Name (please include!): <input name="name" />
Class:
<select name="class">
<option>Not selected</option>
<option>Fresh.</option>
<option>Soph.</option>
<option>Junior</option>
<option>Senior</option>
</select><br />
Comments:<br />
<textarea name="comments" rows="6" cols="60">None</textarea>
<br />
<!-- Submit / Clear Buttons -->
<input type="submit" value="Done" /> or
<input type="reset" value="Clear" />
</p>
</form>
</div>
</div>
</body>
</html>