-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
43 lines (43 loc) · 912 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<style>
button {
height: 30px;
width: 50px;
outline: none;
padding: 5px;
margin:0 auto;
display:block;
}
#login_section {
width: 200px;
height: 80px;
}
body {
margin: 0px;
width: 240px;
height: 100px;
}
p {
padding-left: 10px;
padding-right: 10px;
}
</style>
</head>
<body>
<div id="init_section">
<p>Initialising...</p>
</div>
<div id="login_section">
<p>To start you will need to authorise trakt to use this plugin</p>
<button id="login_button">Login</button>
</div>
<div id="status_section">
<p id="status_text"></p>
<button id="logout_button">Logout</button>
</div>
<script src="config.js"></script>
<script src="popup.js"></script>
</body>
</html>