Created
June 4, 2017 11:34
-
-
Save sushant12/b51f52f57a6b3bb5699c4fbaec1e5d85 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
| <form method="post" action="/update/<%= @task.id%>"> | |
| Name: <input type="text" name="task" value="<%= @task.name%>"> | |
| Finished?: <input type="checkbox" name="finished" value="1" <% if(@task.finished == 1)%> checked <% end %> > | |
| <input type="submit" value="Save"> | |
| </form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment