Created
December 21, 2012 11:15
-
-
Save oehme/4352207 to your computer and use it in GitHub Desktop.
Enlive Example HTML
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form action="/herd_changes" method="post" id="animal_addition_form"> | |
<table> | |
<tr class="per_animal_row"> | |
<td> | |
<input type="text" class="true_name" name="true_name"/> | |
</td> | |
<td> | |
<select class="species" name="species"> | |
<option selected="selected">Bovine</option> | |
<option>Equine</option> | |
</select> | |
</td> | |
<td> | |
<input type="text" class="extra_display_info" name="extra_display_info"/> | |
</td> | |
</tr> | |
<tr> | |
<td colspan="3" style="text-align: center"> | |
<input type="submit" value="Make the Change"/> | |
</td> | |
</tr> | |
</table> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment