mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
122 lines
2.1 KiB
Text
122 lines
2.1 KiB
Text
<form action="/form" method="post">
|
|
<table id="agent_table">
|
|
<caption>Agent</caption>
|
|
|
|
<tr>
|
|
<td>
|
|
<label for="form_agent_name">Name</label>
|
|
</td>
|
|
<td>
|
|
<input type="text" name="form[agent_name]" value="James" id="form_agent_name"/>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="2">
|
|
<input type="submit" value="Create"/>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
|
|
<form action="/form" method="post">
|
|
<table id="girl_table">
|
|
<caption>Girl</caption>
|
|
|
|
<tr>
|
|
<td>
|
|
<label for="form_girl_name">Name</label>
|
|
</td>
|
|
<td>
|
|
<input type="text" name="form[girl_name]" value="Vesper" id="form_girl_name"/>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="2">
|
|
<input type="submit" value="Create"/>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
|
|
<form action="/form" method="post">
|
|
<table id="villain_table">
|
|
<caption>Villain</caption>
|
|
|
|
<tr>
|
|
<td>
|
|
<label for="form_villain_name">Name</label>
|
|
</td>
|
|
<td>
|
|
<input type="text" name="form[villain_name]" value="Ernst" id="form_villain_name"/>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="2">
|
|
<input type="submit" value="Create"/>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
|
|
<table>
|
|
<caption>Ransom</caption>
|
|
|
|
<thead>
|
|
<tr>
|
|
<th>Year</th>
|
|
<th>Governmental</th>
|
|
<th>Private</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<tr>
|
|
<th scope="row">2007</th>
|
|
<td>$300</td>
|
|
<td>$100</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">2008</th>
|
|
<td>$123</td>
|
|
<td>$897</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">2009</th>
|
|
<td>$543</td>
|
|
<td>$99</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<table>
|
|
<caption>Deaths</caption>
|
|
|
|
<thead>
|
|
<tr>
|
|
<th>Year</th>
|
|
<th>Sharks with lasers</th>
|
|
<th>Flaming volcano</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<tr>
|
|
<th scope="row">2007</th>
|
|
<td>66</td>
|
|
<td>7</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">2008</th>
|
|
<td>123</td>
|
|
<td>12</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">2009</th>
|
|
<td>913</td>
|
|
<td>13</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|