forked from andrewsomething/bug2trello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.html
86 lines (66 loc) · 3.44 KB
/
settings.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
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Bug 2 Trello</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="About page">
<meta name="author" content="Andrew Starr-Bochicchio">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.0/jquery.min.js"></script>
<script src="https://api.trello.com/1/client.js?key=7ef8f6a93120e0f5411093164e59ef1d"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/settings.js"></script>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/base.css" >
<link rel="shortcut icon" href="./icon.png">
</head>
<body>
<div id="wrap">
<div class="container">
<h1><img src="img/trello_bug.png"></img> Bug 2 Trello</h1>
<div id="success" style="display: none;" class="alert alert-success">
<span class="checkmark">✓</span>
<strong>Thanks!</strong> You've successfully authorised Bug 2 Trello
<button type="button" class="close" data-dismiss="alert">×</button>
</div>
<div id="error" style="display: none;">
<h1>Uh oh.</h1>
<p>Looks like something has gone wrong authorising you with Trello.</p>
<p>Please try checking your Internet connection.</p>
<button type="button" class="close" data-dismiss="alert">×</button>
</div>
<hr>
<div class="row">
<div class="col-md-6">
<p class="lead"> Thanks for trying Bug 2 Trello!</p>
<p>Bug 2 Trello is a Chrome extension to add bugs/issues to a Trello board. You probably already know this if you've gotten this far.</p>
<p>It currently supports Launchpad, GitHub, SourceForge, Google Code, BitBucket, Debian's BTS, and some Bugzilla instances.</p>
<p><span class="label label-info">Tip!</span> When a board is selected, the go to Trello link in the popup will take you directly to that board.</p>
</div>
<div class="col-md-6">
<p class="lead">We love feedback and patches!</p>
<p>Bug 2 Trello is open source software. It is released under the <a href="http://opensource.org/licenses/MIT">MIT license</a>. The code is available on <a href="https://github.com/andrewsomething/bug2trello">GitHub</a>, and you can <a href="https://github.com/andrewsomething/bug2trello/issues">report bugs</a> there.</p>
<p>Leave a <a href="https://chrome.google.com/webstore/detail/bug-2-trello/aomnoofmdnaccffobkddehcmdihggcke/reviews">review in the Chrome store.</a>
</div>
</div>
<hr>
<div>
<div id="loggedout" class="well" style="display: none;">
<a id="connect" href="#" class="btn-link">Connect To Trello</a>
</div>
<div id="loggedin" class="well" style="display: none;">
Logged in to Trello as <span id="fullName"></span> --
<a id="disconnect" href="#" class="btn-link">Log Out</a>
</div>
</div>
</div>
<div id="push"></div>
</div>
<div id="footer">
<div class="container">
<p class="text-muted">
Built by Andrew Starr-Bochicchio, with many thanks to the team at <a href="https://www.trello.com">Trello</a>!</p>
</div>
</div>
</body>
</html>