Skip to content

Commit

Permalink
☑️ to do list clear
Browse files Browse the repository at this point in the history
  • Loading branch information
seungueonn committed Nov 17, 2021
1 parent 6ec2b91 commit 15f420e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion todolist/assets/todo.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

body {
/* Override bootstrap properties */
background-color: #374a5d !important;
background-color: #ffffff !important;
border: 0 !important;
}

Expand Down
20 changes: 10 additions & 10 deletions todolist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div id="header"> To Do List </div>

<div class="task-list task-container" id="pending">
<h3>Pending</h3>
<h3>할 일</h3>
<!--<div class="todo-task">
<div class="task-header">Sample Header</div>
<div class="task-date">25/06/1992</div>
Expand All @@ -22,26 +22,26 @@ <h3>Pending</h3>
</div>

<div class="task-list task-container" id="inProgress">
<h3>In Progress</h3>
<h3>진행중</h3>
</div>

<div class="task-list task-container" id="completed">
<h3>Completed</h3>
<h3>완료</h3>
</div>

<div class="task-list">
<h3>Add a task</h3>
<h3>할 일 추가하기</h3>
<form id="todo-form">
<input type="text" placeholder="Title" />
<textarea placeholder="Description"></textarea>
<input type="text" id="datepicker" placeholder="Due Date (dd/mm/yyyy)" />
<input type="button" class="btn btn-primary" value="Add Task" onclick="todo.add();" />
<input type="text" placeholder="제목" />
<textarea placeholder="설명"></textarea>
<input type="text" id="datepicker" placeholder="날짜 (dd/mm/yyyy)" />
<input type="button" class="btn btn-primary" value="추가하기" onclick="todo.add();" />
</form>

<input type="button" class="btn btn-primary" value="Clear Data" onclick="todo.clear();" />
<input type="button" class="btn btn-primary" value="지우기" onclick="todo.clear();" />

<div id="delete-div">
Drag Here to Delete
지우려면 여기로 드래그 하세요
</div>
</div>

Expand Down

0 comments on commit 15f420e

Please sign in to comment.