-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
133 lines (96 loc) · 5.06 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="fonts.css">
<link type="text/css" rel="stylesheet" href="materialize.min.css" media="screen,projection" />
<link rel="stylesheet" href="popup.css">
</head>
<body>
<header class='fixed'>
<div class='line'></div>
<img id="logo" class="responsive-img" src='img128x128.png' />
<h6 id="title">Gmail Boards</h6>
<i class="material-icons tiny"
style="color: #dfd21a; vertical-align: text-top;"></p>
</header>
<main>
<div id="error-box" class='container hide'>
<i class="material-icons medium left" style="vertical-align: middle;">error</i>
<p id='error-message'></p>
</div>
<div class="container authorize center hide">
<br />
<a id="authorize" class="waves-effect waves-light blue btn-small pulse scale-transition"><i
class="material-icons right"></i>Authorize</a>
<p>Click on <b>Authorize</b> to allow permission<br />to <b>manage mailbox labels</b> of your Gmail account.
</p>
</div>
<div id="preloader" class='container center'>
<br />
<div class="preloader-wrapper big active">
<div class="spinner-layer spinner-red-only">
<div class="circle-clipper left">
<div class="circle"></div>
</div>
<div class="gap-patch">
<div class="circle"></div>
</div>
<div class="circle-clipper right">
<div class="circle"></div>
</div>
</div>
<br />
</div>
</div>
<div id="labels-ui" class="container hide">
<ol class='o-sortable collection' id="labels_collection"></ol>
</div>
</main>
<footer class="page-footer fixed center">
<div class='line'></div>
</footer>
<script type="text/javascript" src="js/gapiclient.js"></script>
<script type="text/javascript" src="js/popup.js"></script>
</body>
</html>
</header>
<main>
<div id="error-box" class='container hide'>
<i class="material-icons medium left" style="vertical-align: middle;">error</i>
<p id='error-message'></p>
</div>
<div class="container authorize center hide">
<br />
<a id="authorize" class="waves-effect waves-light blue btn-small pulse scale-transition"><i
class="material-icons right">Authorize</a>
<p>Click on <b>Authorize</b> to allow permission<br />to <b>manage mailbox labels</b> of your Gmail account.
</p>
</div>
<div id="preloader" class='container center'>
<br />
<div class="preloader-wrapper big active">
<div class="spinner-layer spinner-red-only">
<div class="circle-clipper left">
<div class="circle"></div>
</div>
<div class="gap-patch">
<div class="circle"></div>
</div>
<div class="circle-clipper right">
<div class="circle"></div>
</div>
</div>
<br />
</div>
</div>
<div id="labels-ui" class="container hide">
<ol class='o-sortable collection' id="labels_collection"></ol>
</div>
</main>
<footer class="page-footer fixed center">
<div class='line'></div>
</footer>
<script type="text/javascript" src="js/gapiclient.js"></script>
<script type="text/javascript" src="js/popup.js"></script>
</body>
</html>