Last active
October 24, 2015 10:03
-
-
Save pankajpatel/e16920561b651c62a6ed to your computer and use it in GitHub Desktop.
Parse ToDo
This file contains 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 id="main"> | |
<h1>ToDo</h1> | |
<section> | |
<div class="input-container"> | |
<input type="text" name="task" id="task" placeholder="Todo Task"/> | |
</div> | |
<div class="button-container"> | |
<button type="button" name="saveTask" id="saveTask">Save Task</button> | |
</div> | |
</section> | |
<section> | |
<ul id="taskList"> | |
</ul> | |
</section> | |
<section> | |
<p> | |
Completed Tasks | |
</p> | |
<ul id="completedTaskList"> | |
</ul> | |
</section> | |
<div style="display:none" class="error"> | |
<p>Looks like there was a problem saving the task</p> | |
</div> | |
<div style="display:none" class="success"> | |
<p>Saved</p> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment