-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (67 loc) · 2.34 KB
/
index.html
File metadata and controls
68 lines (67 loc) · 2.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<title id="TITLE">To Do List!!!</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="CONTAINER">
<div class="UPPER">
<h1>To Do List! </h1>
<p>Do this everyday and everyday OK!</p>
</div>
<!-- where we can add more to do things -->
<div class="ADD_MORE">
<label for="TYPE_WORD" class="LABEL1">ADD WHAT TO DO:</label>
<input class="MORE" id="TYPE_WORD" type="text">
<label class="DUE">Set Deadline :</label>
<input type="datetime-local" id="DUE_DATE">
<button id="ADD_BUTTON">Add</button>
</div>
<!-- Add sorting buttons here -->
<div class="SORT_TASKS">
<label class="SORT_LABEL">Sort by due date :</label>
<button id="NEAREST_BUTTON" class="SORT_BUTTON">Near Due</button>
<button id="LATEST_BUTTON" class="SORT_BUTTON">Later Due</button>
</div>
<div class="TO_DO">
<h2>ONGOING TASKS:</h2>
</div>
<!-- upper table for where new task will land -->
<table id="todo-table">
<thead>
<tr>
<th class="DONE"></th>
<th class="TASK">Task</th>
<th class="DATE">Date Created</th>
<th class="DEADLINE">Due Date</th>
<th class="REMOVE"></th>
</tr>
</thead>
<tbody id="ADD_TO_DO">
<!-- new task will be appended here -->
</tbody>
</table>
<div class="FINISHED_TASK_LABEL">
<h2>FINISHED TASKS:</h2>
</div>
<!-- where the finished task will later land -->
<table id="FINISHED_TABLE">
<thead>
<tr>
<th class="TASK">Task</th>
<th class="DUE_DATE">Due Date</th>
<th class="STATS">Status</th>
<th class="REMOVE"></th>
</tr>
</thead>
<tbody id="FINISHED_TASKS">
<!-- while finished tasks will be appended here -->
</tbody>
</table>
<script src="finish.js"></script>
<script src="feature.js"></script>
<script src="add.js"></script>
</div>
</body>
</html>