-
Notifications
You must be signed in to change notification settings - Fork 1
/
SidebarFinished.html
34 lines (31 loc) · 1.19 KB
/
SidebarFinished.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
<!DOCTYPE html>
<html>
<head>
<base target="_top">
</head>
<body>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
})
</script>
<div class="container">
<h6><b>Now SPOGOU is done.</b><br>The passwords have been set, and this Sheet has been shared with the teacher you provided in the beginning.</h6>
<div class="row">
<h6>Check the Log sheet to see that everything ran as expected.</h6>
<h6>You can then click the <b>Close</b> button to close this sidebar. SPOGOU will then remove the sheets
no longer needed.</h6>
<button class="waves-effect waves-light btn-small" id="btnClose">Close</button>
</div>
</div>
<script>
document.getElementById("btnClose").addEventListener("click",goClose);
function goClose(){
google.script.run.closeSidebarFinished();
}
</script>
</body>
</html>