-
Notifications
You must be signed in to change notification settings - Fork 9
/
pivotate.html
81 lines (69 loc) · 3.5 KB
/
pivotate.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
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Pivotate</title>
<link href="pivotate.css" rel="stylesheet">
<link href="chosen.css" rel="stylesheet">
</head>
<body>
<canvas id="canvas-background"></canvas>
<div id="panel">
<h1>
<img src="icon-32.png">
<span class="name">Pivotate</span>
</h1>
<a href="#" id="clean"> Clean</a>
<a href="#" id="set-token"> Set Token</a>
<form class="form" action="#">
<label for="project">Project</label>
<select id="project" name="project" placeholder="Project List">
</select>
<input id="name" name="name" placeholder="Story Title"></input>
<label for="description">Description</label>
<textarea id="description" name="description"></textarea>
<div class="story">
<div class="label">Story Type</div>
<ul class="icons">
<li data-storytype="feature" title="Feature" class="feature"></li>
<li data-storytype="chore" title="Chore" class="chore"></li>
<li data-storytype="bug" title="Bug" class="bug"></li>
<li data-storytype="release" title="Release" class="release"></li>
</ul>
</div>
<input type="hidden" id="story_type" name="story_type"/><br />
<label for="labels">Labels</label>
<div>
<select id="labels" name="labels" placeholder="Labels" multiple style="width: 100%;">
</select>
</div>
<label for="owners">Owners</label>
<div>
<select id="owners" name="owners" placeholder="Owners" multiple style="width: 100%;">
</select>
</div>
<button class="btn" type="button" id="action" data-name="create-story">
<span class="btn-text" data-name="create-story"> Create Story</span>
<span class="btn-icon-right" data-name="create-story">
<span data-name="create-story"></span>
</span>
</button>
</form>
</div>
<div class="lockscreen" id="lockscreen" style="display:none;"></div>
<div class="modal" id="show-token" style="display:none;">
<div class="modal-body">
<label>Please enter your pivotal API token pivotal: </label> <br/>
<a class="token-help" href="https://www.pivotaltracker.com/profile" target="_blank">Click here to get API token</a><br/>
<input id="token" name="token" placeholder="Token"></input>
<span class="error">token is required</span>
</div>
<button class="btn" type="button" id="save-token">Save Token</button>
</div>
<script src="jquery.js" type="text/javascript"></script>
<script src="jquery-ajax-blob-arraybuffer.js" type="text/javascript"></script>
<script src="chosen.jquery.js" type="text/javascript"></script>
<script src="canvas.js" type="text/javascript"></script>
<script src="pivotate.js" type="text/javascript"></script>
</body>
</html>