-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (40 loc) · 1.56 KB
/
index.html
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
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.8.1/font/bootstrap-icons.min.css">
<title>To-Do List</title>
</head>
<body>
<div id="themeSwitchContainer">
<button id="themeToggle" class="theme-toggle-btn">
<i id="themeIcon" class="bi bi-sun"></i>
</button>
</div>
<div id="menu">
<input type="text" id="searchInput" placeholder="Search tasks...">
<div id="taskListsContainer"></div>
<button id="createTaskList">Create Task List</button>
</div>
<div id="taskListView">
<button id="backToLists">Back to Lists</button>
<div id="progressContainer">
<div id="progressBar"></div>
<div id="progressText"></div>
</div>
<button id="sortTasksByDate"><i class="bi bi-calendar-date"></i> Sort by Date</button>
<button id="deleteCompletedTasks"><i class="bi bi-trash"></i> Delete Completed Tasks</button>
<ul id="taskList"></ul>
<input type="text" id="userInput" placeholder="New task...">
<button id="enter">Add Task</button>
</div>
<script src="js/task.js"></script>
<script src="js/taskList.js"></script>
<script src="js/taskManager.js"></script>
<script src="js/taskView.js"></script>
<script src="js/utils.js"></script>
<script src="js/app.js"></script>
</body>
</html>