2008-12-29 07:10:05 +00:00
|
|
|
<h1>Webrat Form</h1>
|
|
|
|
|
|
|
|
<form action="/testing/submit_form" method="post">
|
|
|
|
<label>
|
|
|
|
Text field
|
|
|
|
<input type="text" name="text_field" />
|
|
|
|
</label>
|
|
|
|
|
|
|
|
<label>
|
|
|
|
TOS <input type="checkbox" name="tos" />
|
|
|
|
</label>
|
|
|
|
|
2009-01-17 22:13:20 +00:00
|
|
|
<label>
|
|
|
|
Prefilled
|
|
|
|
<input type="text" name="prefilled" value="text" />
|
|
|
|
</label>
|
|
|
|
|
2008-12-29 07:10:05 +00:00
|
|
|
<label>
|
|
|
|
Month
|
|
|
|
<select name="month">
|
|
|
|
<option>None</option>
|
|
|
|
<option>January</option>
|
|
|
|
</select>
|
|
|
|
</label>
|
|
|
|
|
|
|
|
<input type="submit" value="Test">
|
|
|
|
</form>
|