-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclearVoteForm.html
More file actions
37 lines (32 loc) · 1.01 KB
/
clearVoteForm.html
File metadata and controls
37 lines (32 loc) · 1.01 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
<!DOCTYPE html>
<html>
<head>
<base target="_top">
<link rel="stylesheet" href="https://ssl.gstatic.com/docs/script/css/add-ons1.css">
<style>
.logo {
vertical-align: middle;
}
.width-100 {
width: 100%;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
}
</style>
</head>
<body>
<div class="sidebar branding-below">
<h3>Czy na pewno chcesz usunąć wszystkie pytania?</h3>
<form id="genereateVoteForm" onsubmit="event.preventDefault(); google.script.run.clearForm()">
<div class="block" id="button-bar">
<input type="submit" class="action" id="generate-vote" value="Wyczyść" />
</div>
</form>
</div>
<div class="sidebar bottom">
<img alt="Add-on logo" class="logo" width="50" src="https://i.imgur.com/lkk10Yf.png">
<span class="gray branding-text">Flying Octopus</span>
</div>
</body>
</html>