-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (62 loc) · 2.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project Kanban Application</title>
<link rel="stylesheet" href="./style.css">
<link rel="shortcut icon" href="./image/favicon.ico" type="image/x-icon">
<script src="https://kit.fontawesome.com/e08babf8bc.js" crossorigin="anonymous"></script>
</head>
<body>
<main>
<div class="outer-wrap">
<div class="inner-wrap">
<section class="heading">
<p class="title">Agile Workflow app </p>
<p class="subtitle">web Based Kanban style application to handle project progress </p>
</section>
<section class="Kanban">
<div class="taskbox">
<div class="title">
<p>TODO</p>
<span class="todo">2</span>
</div>
<div class="cards todo" data-id="0">
</div>
<form class="add">
<input type="text" name="task" placeholder="new task" autocomplete="off" maxlength="30">
<button class="" data-id="0" name="submit"><i class="fa-solid fa-plus"></i></button>
</form>
</div>
<div class="taskbox">
<div class="title">
<p>In progress </p>
<span class="pending">1</span>
</div>
<div class="cards pending" data-id="1">
</div>
<form class="add">
<input type="text" name="task" placeholder="new task" autocomplete="off" maxlength="30">
<button class="" data-id="1" name="submit"><i class="fa-solid fa-plus"></i></button>
</form>
</div>
<div class="taskbox">
<div class="title">
<p> completed </p>
<span class="completed">1</span>
</div>
<div class="cards completed" data-id="2">
</div>
<form class="add">
<input type="text" name="task" placeholder="new task" autocomplete="off" maxlength="30">
<button class="" data-id="2" name="submit"><i class="fa-solid fa-plus"></i></button>
</form>
</div>
</section>
</div>
</div>
</main>
<script type="module" src="./index.js"></script>
</body>
</html>