-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
48 lines (33 loc) · 941 Bytes
/
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
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="kanban.css">
<script src='https://cdn.firebase.com/js/client/1.0.17/firebase.js'></script>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js'></script>
<script src='kanban.js'></script>
<title>Kanban</title>
</head>
<body>
<h1>Kanban Board</h1>
<div id='input'>
<input type='text' id='taskInput' placeholder='Enter new task'>
</div>
<span id = 'rows'>
<div id = 'backlog'>
<h3 class = 'col-title'>Backlog</h3>
<ul id = 'backlog-items', class = 'items'>
</ul>
</div>
<div id = 'in-progress'>
<h3 class = 'col-title'>In Progress</h3>
<ul id = 'in-progress-items', class = 'items'>
</ul>
</div>
<div id = 'done'>
<h3 class = 'col-title'>Done</h3>
<ul id = 'done-items', class = 'items'>
</ul>
</div>
</span>
</body>
</html>