-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
51 lines (47 loc) · 1.42 KB
/
popup.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
<!doctype html>
<html>
<head>
<title>Trello It</title>
<style>
body {
min-width: 357px;
overflow-x: hidden;
}
img {
margin: 5px;
border: 2px solid black;
vertical-align: middle;
width: 75px;
height: 75px;
}
</style>
<!--
- JavaScript and HTML must be in separate files: see our Content Security
- Policy documentation[1] for details and explanation.
-
- [1]: http://developer.chrome.com/extensions/contentSecurityPolicy.html
-->
<script src="jquery.min.js"></script>
<script src="trello.js"></script>
<script src="popup.js"></script>
<link rel="stylesheet" type="text/css" href="trello.css" />
</head>
<body>
<div id="loggedout">
<div class="connectDiv">
To use this extension:
<li>click the 'Connect to Trello' button</li>
<li> Then copy/paste the token into the textbox below and click the 'Token Entered' button </li>
</div>
<div class="connectDiv"><a id="connectLink" href="#">Connect To Trello</a></div>
<div class="connectDiv"><input id="tokenField" placeholder="Trello Token"></input>
<button id="tokenEntered">Token Entered</button></div>
</div>
<div id="trelloDiv">
<div id="notificationContainer"></div>
<div id="boardContainer"> </div>
<div id="addContainer">
</div>
</div>
</body>
</html>