forked from michaelos02/public_tabulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (61 loc) · 1.54 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<base target="_top">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<style>
body,
input {
font-size: 16px;
color: red;
font-family: Verdana, sans-serif;
}
</style>
<?!= include('tab_JS'); ?>
<?!= include('tab_std_CSS'); ?>
<?!= include('tab_modified_CSS'); ?>
<script>
window.onload = function() {
google.script.run.withSuccessHandler(function(user) {
document.getElementById("currentUser").innerHTML = 'Current User: ' + user;
}).pick('currentUser');
google.script.run.withSuccessHandler(nsTab.loadTable).getData3()
}
</script>
</head>
<body>
<div class="w3-container">
<div>
<div class="w3-container">
<h4 class="w3-text-blue" id='currentUser'></h4>
</div>
</div>
<div>
<div>
<button id="download-json">Download JSON</button>
<button id="get-data">Get Data</button>
</div>
<div class="w3-row">
<div class="w3-col" style="width:10%">
</p>
</div>
<div class="w3-col" style="width:80%">
<div id='infoTable'>
</div>
</div>
<div class="w3-col" style="width:10%">
</p>
</div>
</div>
<div>
</div>
</div>
<div></div>
</div>
</div>
<?!= include('nsTab_JS'); ?>
</body>
</html>