Created
November 19, 2017 21:16
-
-
Save allgenesconsidered/2f6328ea790eb3ea87cbe1e525da2e2b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| <div class="card"> | |
| <h2>Edit this todo...</h2> | |
| <form action="#"> | |
| <input class="text-input" name="description" type="text" value="<%= @todo.description %>"> | |
| <input class="text-input" name="pomodoro_estimate" type="number" value="<%= @todo.pomodoro_estimate %>"> | |
| <input class="button add-new-todo-button" type="submit" value="Edit todo"> | |
| <a href="/todo/index" class="simple-link">Go back...</a> | |
| </form> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment