-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·34 lines (31 loc) · 1.42 KB
/
Copy pathindex.html
File metadata and controls
executable file
·34 lines (31 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Todo App</title>
<link rel="stylesheet" type="text/css" href="css/index.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<main class="app">
<div class="toolbar default-padding">
<input id="id_todo_input" type="text" class="todo-input" placeholder="Add new task">
<div class="buttons-panel">
<button id="all_button" class="button" onclick="buttonActions('showAll')">All</button>
<button id="pending_button" class="button" onclick="buttonActions('showPending')">Pending</button>
<button id="completed_button" class="button" onclick="buttonActions('showCompleted')">Completed</button>
<button id="clearall_button" class="button" onclick="buttonActions('clearAll')"><i
class="fa fa-trash"></i>Clear All</button>
</div>
</div>
<ol id="id_tasks_section" class="tasks-section default-padding"></ol>
<div class="tasks-infos">
<span id="id_all_info"></span>
<span id="id_completed_info"></span>
<span id="id_pending_info"></span>
</div>
</main>
<script src="src/index.js"></script>
</body>
</html>