Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Last active May 11, 2017 13:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcomartin/7a5c9e2c540cbd4df599d44e4308f526 to your computer and use it in GitHub Desktop.
Save dcomartin/7a5c9e2c540cbd4df599d44e4308f526 to your computer and use it in GitHub Desktop.
<form action="/books/add" method="post">
<div>
<label for="title">Book Title:</label>
<input type="text" id="title" name="title" />
</div>
<div>
<label for="price">Genre:</label>
<select id="price" name="price">
<option value="1">Business Management</option>
<option value="2">Software Development</option>
</select>
</div>
<div class="button">
<button type="submit">Add Book</button>
</div>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment