-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·75 lines (66 loc) · 3.25 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>
<head>
<title>Task Manager App</title>
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="app/css/main.css">
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="jquery-script-clear"></div>
<div class="container">
<div class="row text-center">
<div class="col-md-12">
<h1>Task Manager App</h1>
<p class="lead">Task Manager App keep track of your task progress, Data solution build on top of ArcTop Labs #DataSolution #MasterDataNode EcoSystem</p>
</div>
</div>
<div class="col-lg-12">
<section class="col-md-4">
<div class="panel panel-danger ">
<div class="panel-heading">
<form class="form-group" id="newTaskForm">
<div class="input-group" style="margin-bottom:-40px;">
<div class="input-group-addon" id="saveNewItem"><a href="">Save</a></div>
<div class="input-group-addon" id="cancel"><a href="">Cancel</a></div>
<input class="form-control" type="text" id="newItemInput" placeholder="New Item">
</div>
</form>
<div class='new-item-header'>
<span id="newHeading">New</span>
<a href="#newItem" class="pull-right pencil" id="newListItem" style="">☷</a>
</div>
</div>
<div class="panel-body">
<ul class="list-group" id='newList'></ul>
</div>
</div>
</section>
<section class="col-md-4">
<div class="panel panel-warning ">
<div class="panel-heading">
In Progress
</div>
<div class="panel-body">
<ul class="list-group" id="currentList"></ul>
</div>
</div>
</section>
<section class="col-md-4">
<div class="panel panel-success ">
<div class="panel-heading">
Archived
</div>
<div class="panel-body">
<ul class="list-group" id="archivedList"></ul>
</div>
</div>
</section>
</div>
</div>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://www.parsecdn.com/js/parse-1.3.0.min.js"></script>
<script src="app/js/app.js"></script>
<script src="app/js/arctoplabs.js"></script>
</body>
</html>