-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (63 loc) · 2.62 KB
/
index.html
File metadata and controls
72 lines (63 loc) · 2.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task Manager</title>
</head>
<body>
<table width="100%" bgcolor="#AFEEEE">
<tr>
<td align="center">
<h1>Welcome to Task Manager!</h1>
<p>Your ultimate tool for staying organized and on top of your tasks.</p>
</td>
</tr>
</table>
<table width="100%">
<tr align="center">
<td>
<a href="/cgi-bin/show_tasks.sh">Show Tasks</a></a>
</td>
<td>
<a href="/cgi-bin/task.sh">Add Task</a>
</td>
</tr>
</table>
<table width="80%" align="center">
<tr>
<td align="center">
<h2>About Task Manager</h2>
<p>Organize your tasks with our simple and intuitive task management tool.</p>
<p><i>Here's what you can do:</i></p>
</td>
</tr>
<tr>
<td align="left">
<ul>
<li><strong>Add new tasks</strong>: Stay on track by defining priorities and deadlines.</li>
<li><strong>Edit existing tasks</strong>: Update descriptions, deadlines, or priorities whenever needed.</li>
<li><strong>Mark tasks as completed</strong>: Celebrate your progress with just one click!</li>
<li><strong>Delete tasks</strong>: Keep your task list clean and focused.</li>
<li><strong>View all your tasks</strong>: Get a clear overview of what’s on your plate.</li>
<li><strong>Archive completed tasks</strong>: A unique feature that lets you save your completed tasks in separate text files for future reference. Automatic save of completed tasks to remote machine.</li>
</ul>
<p>Task Manager isn’t just functional — it’s your partner in productivity. Get started now and take control of your day!</p>
</td>
</tr>
<tr>
<td align="center">
<img src="/images/task_manager.jpg" alt="Task Manager Illustration" width="25%" hspace="50">
<img src="/images/task_manager2.jpg" alt="Task Manager Illustration" width="16.7%" hspace="50">
</td>
</tr>
</table>
<table width="100%" bgcolor="#333">
<tr>
<td align="center">
<font color="white">© 2025 Task Manager. All rights reserved.</font>
</td>
</tr>
</table>
</body>
</html>