-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (65 loc) · 2.74 KB
/
index.html
File metadata and controls
74 lines (65 loc) · 2.74 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task Tracker Program</title>
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css">
</head>
<body>
<div class="gradient-background">
<div class="gradient-sphere sphere-1"></div>
<div class="gradient-sphere sphere-2"></div>
<div class="gradient-sphere sphere-3"></div>
<div class="glow"></div>
<div class="grid-overlay"></div>
<div class="noise-overlay"></div>
<div class="particles-container" id="particles-container"></div>
</div>
<div class="main-container">
<div class="adding-task-container">
<div class="adding-task-content-container">
<h1>Task Tracker</h1>
<p>Add your tasks below</p>
<form id="task-form">
<input type="text" id="task-input" placeholder="Enter a new task..." required>
<button class="add-task" type="button">
<svg class="add-task__icon" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
<path fill="var(--c)"
d="M12 4a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2h-6v6a1 1 0 1 1-2 0v-6H5a1 1 0 1 1 0-2h6V5a1 1 0 0 1 1-1Z" />
</svg>
Add Task
</button>
</form>
</div>
</div>
<div class="task-list-container">
<div class="task-list-header">
<h2>Task List</h2>
<i class="bi bi-list-task"></i>
</div>
<div class="task-list-content">
<!-- Task will load dynamically -->
</div>
</div>
<i class="bi bi-list task-list-toggle"></i>
</div>
<div class="quick-edit-modal">
<div class="modal-content">
<span class="bi bi-x-octagon"></span>
<h2>Edit Task</h2>
<form id="edit-task-form">
<input type="text" id="edit-task-input" placeholder="Edit your task..." required>
<button type="submit">Save Changes</button>
</form>
</div>
</div>
<footer>
<p>© 2025 Task Tracker. Made by <a href="https://www.linkedin.com/in/taimoursohail" target="_blank">Taimour
Sohail</a>.</p>
</footer>
</body>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js"></script>
<script src="./script.js"></script>
</html>