-
Notifications
You must be signed in to change notification settings - Fork 0
/
tasksSidebar.html
77 lines (62 loc) · 2.02 KB
/
tasksSidebar.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
<!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;
border-radius: 15px;
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>Item/Tasks</h3>
<div>
<form>
<div><output name="newItem" for=""></output></div>
<div><output name="newItemPoints" for=""></output></div>
<div><output name="newItemAction" for=""></output></div>
<div><output name="newItemDate" for=""></output></div>
<div><output name="newItemLead" for=""></output></div>
</form>
</div>
<div>
<input class="button" onclick="google.script.run.showTaskDialog()" type="button" value="Enter item" id="showDialog" />
<input class="button" onclick="google.script.run.submitItem()" type="button" value="Submit" id="submit" />
</div>
<div>
<p>
<input type="button" value="Details" onclick="google.script.run.showDetails()" />
<input type="button" value="Settings" onclick="google.script.run.showSettings()" />
<input type="button" value="Help" onclick="google.script.host.showHelp()" />
<input type="button" value="Close" onclick="google.script.host.close()" />
</p>
</div>
</body>
</html>