Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions 03-task-manager/final/public/task.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,21 @@ <h4>Edit Task</h4>
</div>
<div class="form-control">
<label for="name">Name</label>
<input type="text" name="name" class="task-edit-name" />
<input
title="Enter Your Task"
type="text"
name="name"
class="task-edit-name"
/>
</div>
<div class="form-control">
<label for="completed">completed</label>
<input type="checkbox" name="completed" class="task-edit-completed" />
<input
title="click here complete"
type="checkbox"
name="completed"
class="task-edit-completed"
/>
</div>
<button type="submit" class="block btn task-edit-btn">edit</button>
<div class="form-alert"></div>
Expand Down