-
Notifications
You must be signed in to change notification settings - Fork 27
/
index.html
60 lines (56 loc) · 2.36 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
<!DOCTYPE html>
<html>
<head>
<title>JavaScript Project checklist</title>
<link href='http://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet">
<link href="resources/styles.css" rel="stylesheet">
</head>
<body>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="//canjs.com/release/2.2.4/can.jquery.js"></script>
<script src="resources/drawDoughnut.js"></script>
<script type="text/javascript" src="//rawgit.com/daffl/jquery.dform/master/dist/jquery.dform-1.1.0.min.js"></script>
<script src="resources/form-params.js"></script>
<script src="resources/converter.js"></script>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<button class="btn btn-link pull-right btn-small open-paste-tool-js">Paste in previous results...</button>
<div class="panel panel-default paste-tool">
<div class="panel-heading">
<h3 class="panel-title">Paste in your JSON data...</h3>
</div>
<div class="panel-body">
<div class="form-group">
<label class="control-label" for="paste-bucket">Paste JSON data</label>
<textarea class="form-control paste-bucket" id="paste-bucket" name="paste-bucket"></textarea>
</div>
<button class="btn btn-default">Apply</button>
</div>
</div>
</div>
<div class="col-md-8 col-md-offset-2">
<div class="jumbotron">
<h1>JavaScript Project Checklist</h1>
<p class="text-center">
<a href="https://github.com/bitovi/checklist">The Github Repository</a> | <a href="http://blog.bitovi.com/why-checklist/">The Original Article</a></p>
</div>
<div class="links panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Jump to section...</h3>
</div>
<div class="panel-body">
<ul>
<li><a href='#management'>Management</a></li>
<li><a href='#design'>Design & UX</a></li>
<li><a href='#dev'>Development</a></li>
</ul>
</div>
</div>
<form id="checklist" role="form"></form>
</div>
</div>
</div>
</body>
</html>