-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebar.html
23 lines (22 loc) · 993 Bytes
/
sidebar.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<base target="_top">
<link rel="stylesheet" href="https://ssl.gstatic.com/docs/script/css/add-ons1.css">
<script>
function navToBT() {
google.script.run.basicTableChoice();
}
function navToDB() {
google.script.run.databaseChoice();
}
</script>
</head>
<body>
<h4 style="padding-left: 10%;padding-bottom: 5px;">Step 1: Choose a Table</h4>
<p style="padding-left: 10%;color: rgb(100, 100, 100);">Basic Table</p>
<a onclick="navToBT()"><img src="https://drive.google.com/uc?export=download&id=1tE4I7In4HbKAGzL35vVMzuv8E62ESD2J" style="width: 80%; padding-left: 10%; padding-right: 10%"></a>
<p style="padding-left: 10%;color: rgb(100, 100, 100);">Database</p>
<a onclick="navToDB()"><img src="https://drive.google.com/uc?export=download&id=18L02g2Xo4_oeA_2JXzmOuTh5LSZv74oU" style="width: 80%; padding-left: 10%; padding-right: 10%, padding-bottom: 20px;"></a>
</body>
</html>