-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
32 lines (30 loc) · 916 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<link rel="stylesheet" href="app.css"/>
</head>
<body>
<div class="app-wrapper">
<header class="header">
<h1 class="logo">Kanban
<small>by Elton Jain</small>
</h1>
<p class="total-card-counter" id="totalCards"></p>
</header>
<form id="frmAddTodo" class="form-add-todo">
Add Project:
<input type="text" autocomplete="off" name="todo_text" id="" value="" placeholder="Write and press enter" />
</form>
<div class="board" id="board"></div>
<form id="frmAddList" class="form-add-list">
Add List:
<input type="text" autocomplete="off" name="list_name" id="" value="" placeholder="List name" />
</form>
</div>
<script src="https://cdn.jsdelivr.net/lodash/4/lodash.min.js"></script>
<script src="app.js"></script>
</body>
</html>