forked from kadavr95/to-do-web-lab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodo.html
More file actions
42 lines (40 loc) · 1.18 KB
/
Copy pathtodo.html
File metadata and controls
42 lines (40 loc) · 1.18 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
<html>
<head>
<meta charset="UTF-8">
<link type="text/css" rel="stylesheet"
href="stylesheet.css">
<title>To-Do List</title>
</head>
<body>
<div id="header">
<img src="ToDoLogo.png">To-Do List
</div>
<form method="post" action="add">
<span>Enter task:</span><input id="inputField" name="task" placeholder="join Dimini Inc.">
<input id="addButton" type="submit" value="add">
</form>
<!--<form method="post" action="remove">-->
<!--Remove task:<input name="taskID">-->
<!--<input type="submit" value="remove">-->
<!--</form>-->
<ol>
<#list tasks as task>
<li>
<table>
<tr>
<td>${task.taskName}<!--(id:${task.id})--></td>
<td class="removeButtonCell" ><form method="post" action="remove">
<input name="taskRemove" type="submit" value="remove?id=${task.id}"></input>
</form></td>
</tr>
</table>
</li>
</#list>
<!--<li>Wake up</li>-->
<!--<li>Take over the world</li>-->
</ol>
<div id="footer">
To-Do List v.0.6.<br>©<a href="http://dimini.tk">Dimini Inc.</a>, 2017
</div>
</body>
</html>