-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (36 loc) · 1.76 KB
/
index.html
File metadata and controls
46 lines (36 loc) · 1.76 KB
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>jQuery Schedule Demo</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="css/jquery.schedule.css">
<link rel="stylesheet" href="css/jquery.schedule-demo.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
</head>
<body>
<div class="container">
<div class="row text-center">
<div class="col-md-12">
<h1>Task Schedule Manager App</h1>
<p class="lead">Task Schedule Manager App keep track of your task progress, Data solution build on top of ArcTop Labs #DataSolution #MasterDataNode EcoSystem</p>
</div>
</div>
<div class="row">
<div class="col-md-6 p-6" style="margin-bottom:5px;">
<p> </p>
<input type="button" class="btn btn-warning" value="Import sample data" id="import" />
<input type="button" class="btn btn-warning" value="Reset" id="reset" />
</div>
</div>
<div class="col-lg-12 top-2">
<div id="schedule" class="jqs-demo"></div>
</div>
<script src="js/jquery.schedule.js"></script>
<script src="js/app.js"></script>
<script src="js/arctoplabs.js"></script>
</div>
</body>
</html>