1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00
teamcapybara--capybara/lib/capybara/spec/views/fieldsets.erb

31 lines
684 B
Text
Raw Normal View History

2017-01-26 19:10:51 -05:00
2009-11-24 15:32:25 -05:00
<form action="/form" method="post">
<fieldset id="agent_fieldset">
<legend>Agent</legend>
<p>
<label for="form_agent_name">Name</label>
<input type="text" name="form[agent_name]" value="James" id="form_agent_name"/>
</p>
<p>
<input type="submit" value="Create"/>
</p>
</fieldset>
</form>
<form action="/form" method="post">
<fieldset id="villain_fieldset">
<legend>Villain</legend>
<p>
<label for="form_villain_name">Name</label>
<input type="text" name="form[villain_name]" value="Ernst" id="form_villain_name"/>
</p>
<p>
<input type="submit" value="Create"/>
</p>
</fieldset>
2016-03-07 19:52:19 -05:00
</form>