-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathToDoList.html
81 lines (56 loc) · 1.74 KB
/
ToDoList.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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>Welcome to your toDo list</title>
<link href="_css/camel.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<header id="header">
<h3>ToDo List</h3>
<div>
<span id="currentTime"></span>
</div>
<div class="clear"></div>
</header>
<div id="attention"></div>
<div class="mainContainer">
<div id="form">
<form action="ToDoList.html">
<div id="todoList">
<textarea placeholder="Please enter your task..." id="newTaskEntry"></textarea>
<input type="button" id="submit" class="btn submit" value="Add">
<input type="button" id="removeAllTask" class="btn remove-all" value="Clear"
onclick="newEntry.removeAllTasks()">
<div style="clear:both"></div>
</div>
<div id="clear"></div>
<div class="outcomeTable">
<table id="outcomeTable">
</table>
</div>
</form>
</div>
</div>
<div id="localStorage"></div>
<div>
<input type="button" id="tester" value="tester" onclick="newEntry.createRows()">
</div>
<h1 id="what">
<p id="how">
</p>
</h1>
<p id="countRows" onclick="clearWarningMessage()"></p>
</div>
<footer class="footer">
<p id="footerMessage">
Camel creative technology
</p>
</footer>
<script src="elements.js"></script>
<script src="localStorage.js"></script>
<script src="todolist.js"></script>
<script src="init.js"></script>
</body>
</html>