-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (40 loc) · 1.46 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
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task Configurator</title>
<link
rel="stylesheet"
href="/styles/formant.css"
/>
<link rel="stylesheet" href="/styles/modal.css">
<link rel="stylesheet" href="/styles/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
</head>
<body>
<div class="button-container">
<button id="taskConfigBtn" class="icon-button"><i class="fas fa-cog"></i></button>
</div>
<div id="taskModal" class="modal">
<div class="modal-content">
<h2>Add Task</h2>
<div class="task-input-container">
<input type="text" id="taskInput" placeholder="Enter Task">
<button id="addTaskBtn" class="icon-button"><i class="fas fa-plus"></i></button>
</div>
<span id="taskError" class="error-message"></span>
<ul id="tasksList"></ul>
<!-- Done button at the bottom -->
<button id="doneBtn" class="modal-button">Done</button>
</div>
</div>
<script type="module" src="/src/config.ts"></script>
<h1 style="text-align: center;" >Mark Your Daily Progress</h1>
<div id="tasksContainer">
<h3 id="noTasksMessage" style="text-align: center; display: none;">Add some tasks!</h3>
<!-- Tasks will be populated here -->
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>