-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·75 lines (69 loc) · 2.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<script src="script.js"></script>
<title>Task Keeper</title>
</head>
<body>
<!-- App Header -->
<header>
<h1>Task Keeper</h1>
</header>
<!-- Main app view -->
<div class="flex-container">
<!-- Left side bar, holds "Create Task" button -->
<aside>
<button id="create-task-button">Create Task</button>
</aside>
<!-- Swim Lanes -->
<main>
<table>
<tr>
<th>To Do</th>
<th>Doing</th>
<th>Done</th>
</tr>
<tr>
<td>
<ul id="to-do">
<!-- <li id="a" draggable="true">Will do A <a class="delete-task">×</a></li> -->
</ul>
</td>
<td>
<ul id="doing">
<!-- <li id="b" draggable="true">Doing B</li> -->
<!-- <li id="c" draggable="true">Doing C</li> -->
</ul>
</td>
<td>
<ul id="done">
<!-- <li id="d" draggable="true">Done D</li> -->
<!-- <li id="e" draggable="true">Done E</li> -->
<!-- <li id="f" draggable="true">Done F</li> -->
</ul>
</td>
</tr>
</table>
</main>
<!-- "Edit Task" pop-up dialogue box (modal) -->
<div id="edit-task-modal" class="modal-overlay">
<div class="modal-content">
<span class="close-modal">×</span>
<h2>Create or Edit Task</h2>
<form action="#" id="edit-task-form">
<label for="task-name">Name of Task:</label>
<input type="text" id="task-name" name="task-name">
<input type="hidden" id="task-id" name="task-id" value="">
<br><br>
<input type="submit" value="Save">
<p style="font-style:italic">If editing a task, the existing task will be
removed from the board.</p>
</form>
</div>
</div>
</div>
</body>
</html>