Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Last active May 3, 2017 15:34
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/8e53858133362a6ef624b7f95ff2f70b to your computer and use it in GitHub Desktop.
Save dcomartin/8e53858133362a6ef624b7f95ff2f70b to your computer and use it in GitHub Desktop.
<form action="/todo/123/edit" method="post">
<div>
<label for="name">Name:</label>
<input type="text" id="name" name="name" />
</div>
<div>
<label for="categoryId">Category:</label>
<select name="categoryId">
<option value="1">House</option>
<option value="2">Work</option>
<option value="3">Personal</option>
</select>
</div>
<div>
<button type="submit">Save</button>
</div>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment