-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
executable file
·75 lines (62 loc) · 1.89 KB
/
main.html
File metadata and controls
executable file
·75 lines (62 loc) · 1.89 KB
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
<!-- <!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
</head>
<body>
<button id="update">Update Songs</button>
<script type="text/javascript" src="main.js"></script>
</body>
</html> -->
<!doctype html>
<html>
<head>
<title>Gmail API demo</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="bootstrap-3.3.5/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="bootstrap-3.3.5/dist/css/bootstrap-theme.min.css">
<style>
iframe {
width: 100%;
border: 0;
min-height: 80%;
height: 600px;
display: flex;
}
html, body {
height: 600px;
width: 600px;
}
.container {
max-width: 100%;
max-height: 100%;
}
.hidden {
display: inline-block !important;
}
</style>
</head>
<body>
<div class="container">
<h1>Gmail API demo</h1>
<button id="authorize-button" class="btn btn-primary hidden">Authorize</button>
<button id="follow-artists" class="btn btn-primary hidden">Follow Artists</button>
<table class="table table-striped table-inbox hidden">
<thead>
<tr>
<th>From</th>
<th>Subject</th>
<th>Date/Time</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<script src="jquery.js"></script>
<script src="bootstrap-3.3.5/dist/js/bootstrap.min.js"></script>
<script type="text/javascript" src="spotify-web-api.js"></script>
<script type="text/javascript" src="main.js"></script>
<!-- // <script type="text/javascript" src="https://apis.google.com/js/client.js?onload=handleClientLoad"></script> -->
<!-- // <script src="https://apis.google.com/js/client.js?onload=handleClientLoad"></script> -->
</body>
</html>