-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtaskmanager.html
More file actions
81 lines (64 loc) · 2.19 KB
/
taskmanager.html
File metadata and controls
81 lines (64 loc) · 2.19 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
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Task Manager</title>
<link rel="stylesheet" href="styles/nav.css">
<link rel="stylesheet" href="styles/taskmanager.css" />
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-8KQ6CZ5P3W"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-8KQ6CZ5P3W');
</script>
<body>
<div id="nav"></div>
<script src="scripts/nav.js"></script>
<div class="layout">
<!-- LEFT: Main Content -->
<div class="main">
<div class="folder-controls">
<div class="folder-selector">
<label for="folderSelect">Current Folder:</label>
<select id="folderSelect">
</select>
</div>
<div class="folder-input">
<input id="folderInput" placeholder="New folder (e.g., Spring 2025)" />
<button id="createFolderBtn">Create Folder</button>
</div>
</div>
<div class="add-course">
<input id="courseInput" placeholder="Add course or project..." />
<input id="courseColorInput" type="color" value="#4a90e2">
<button id="addCourseBtn">Add</button>
</div>
<div id="courseGallery" class="gallery"></div>
<div id="taskSection" class="hidden">
<h2 id="taskTitle"></h2>
<div class="add-task">
<input id="taskInput" placeholder="Task description..." />
<input id="dueDateInput" type="date" />
<select id="statusInput">
<option value="Not Started">Not Started</option>
<option value="In Progress">In Progress</option>
<option value="Completed">Completed</option>
</select>
<button id="addTaskBtn">Add Task</button>
</div>
<ul id="taskList"></ul>
<button class="back-btn" id="backBtn">← Back</button>
</div>
</div>
<!-- RIGHT: Sorted Task Panel -->
<div class="sidebar">
<h2>Upcoming Tasks</h2>
<ul id="sortedTaskList"></ul>
</div>
</div>
<script src="scripts/taskmanager.js" type="module"></script>
</body>
</html>