-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
106 lines (59 loc) · 1.67 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<html>
<head>
<title>To Do List!</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<center>
<div id="main">
<div id="heading">
<h1></h1>
</div>
<div id="newTasks">
<form id="newTaskForm" onsubmit="return false;">
<!-- <button id="submit">Create new task!</button> -->
<button id="submit" class="buttons">Create new task!</button><br>
<input type="text"; placeholder="New task" id="newObject"/>
<input type="text"; placeholder="Add a category" id="newCat"/><br>
<!-- <input type="radio" name="type" value="workcheck" />Work
<input type="radio" name="type" value="playcheck" />Play<br /> -->
</form>
</div>
<!-- <div id=row>
<div class="work"><h2>Work</h2></div>
<div class="play"><h2>Play</h2></div>
</div> -->
<div class="list"><h2>Tasks</h2></div>
<br><br>
<div id="numberDone">
<span id="numberOfCompleted"> </span> Task<span id="plural"></span> Completed! <br><br>
</div>
<div id="buttons">
<button class="buttons" id="filterAll">Show All</button>
<button class="buttons" id="filterIncomplete">Show Incomplete</button>
<button class="buttons" id="filterComplete">Show Completed</button>
<br>
<button class="buttons" id="deleteComplete">Delete All Completed</button>
<button class="buttons" id="deleteAll">Delete All</button>
<button class="buttons" id="resetCounter">Reset Completed Counter</button>
<br><br>
<div class="tagsRow"></div>
<div id="grey">
</div>
<div id="green">
</div>
<div id="yellow">
</div>
<div id="red">
</div>
<div id="purple">
</div>
<div id="blue">
</div>
</div>
</div>
</center>
<script src="https://code.jquery.com/jquery-2.1.1.js"></script>
<script src="./script.js"></script>
</body>
</html>