<!-- Basic form template -->
<form action="URL" method="GET">
<p>Explain the form here.</p>
<ul>
<li>This is a boolean option:
<input type=checkbox name=c1 value=off>
<li>This is a choice:
#1<input type=radio name=r1 value=a>
#2<input type=radio name=r1 value=b>
#3<input type=radio name=r1 value=c>
<li>This is a text field:
<input name=s1>
<li>This is a password field:
<input type=password name=PASS>
</ul>
<p>You can enter lots of text here:
<textarea name=text1 cols=50 rows=10>Here is an initial value
</textarea>
</p>
<p>Decide what to do with this form:
<input type=reset name=Reset>
<input type=submit name=Submit>
</p>
</form>
