Skip to content

Instantly share code, notes, and snippets.

@kouphax
Created October 16, 2010 14:28
Show Gist options
  • Save kouphax/629833 to your computer and use it in GitHub Desktop.
Save kouphax/629833 to your computer and use it in GitHub Desktop.
<h1>ToDo List</h1>
<form id="new-task-form" action="\">
<p>
<label for="task">Task:</label>
<input type="text" id="task" name="task"/>
</p>
<p>
<label for="note">Note:</label>
<textarea id="note" name="note" rows="5" cols="30"></textarea>
</p>
<input type="button" value="Add" id="add"/>
<input type="button" value="Save" id="save"/>
</form>
<h2>Current ToDos</h2>
<ul id="todo-list"></ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment