-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelpSidebar.html
60 lines (48 loc) · 1.6 KB
/
helpSidebar.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
<!DOCTYPE html>
<html>
<head>
<base target="_top">
<style>
html {
background: #bbdcf0;
color: black;
line-height: 1.5;
font-family: Verdana;
}
output { font-size: 200%;
font-family: Helvetica Neue,Helvetica,Arial,sans-serif; }
.button {
background-color: #2980B9;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.dataInput {
background: #f1f2ee;
padding: 5px;
border-radius: 15px;
margin: 5px;
border-style: solid;
border-width: 2px;
border-color: #c3d5d8;
}
</style>
</head>
<body>
<h3>Help</h3>
<p>This is where I'm going to leave notes for the next person to use this form, and perhaps a video tutorial.</p>
<iframe width="280" height="157.5" src="https://www.youtube.com/embed/NiiidKMEmcA" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<p>
<input type="button" value="Details" onclick="google.script.run.showDetails()" />
<input type="button" value="Tasks" onclick="google.script.run.showTasks()" />
<input type="button" value="Settings" onclick="google.script.run.showSettings()" />
<input type="button" value="Close" onclick="google.script.host.close()" />
</p>
</body>
</html>