-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.html
60 lines (56 loc) · 2.34 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
<html>
<head>
<title>Cardorizer</title>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<script type="text/javascript" src="js/lib/jquery.min.js"></script>
<script type="text/javascript" src="js/lib/bootstrap.min.js"></script>
<script type="text/javascript" src="js/cardorizer-creator.js"></script>
<script type="text/javascript" src="js/loader.js"></script>
</head>
<body>
<div class="row">
<div class="span6 offset5">
<div id="feedback" class="alert alert-success" style="display: none">
<a class="close" data-dismiss="alert">×</a>
Your card was created on Trello.
</div>
</div>
</div>
<div class="row">
<div class="span6 offset5">
<div id="deauthorized" class="alert alert-info" style="display: none">
<p>You are not yet allowing Cardorizer to read from
& write to Trello on your behalf. Click the link
below to authorize this application.</p>
<a id="connectLink" class="btn primary">Authorize</a>
</div>
</div>
</div>
<div class="row">
<div class="span6 offset5">
<div>
<label>Board ID:</label>
<input type="text" id="board-id" value=""/>
</div>
<div>
<label>Cardorizer URL:</label>
<input type="text" id="cardorizer-url" value=""/>
</div>
<div>
<input type="button" id="make-cardorizer" value="Make Cardorizer"/>
</div>
<div id="cardorizer-bookmarklet"></div>
</div>
</div>
<div class="row">
<div class="span6 offset5">
<div id="authorized" class="alert alert-info" style="display: none">
<p>You are currently allowing Cardorizer to read
from & write to Trello on your behalf. Click the link
below to deauthorize this application.</p>
<a id="disconnectLink" class="btn danger">Deauthorize</a>
</div>
</div>
</div>
</body>
</html>