-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSidebarFinished.html
More file actions
35 lines (32 loc) · 1.42 KB
/
SidebarFinished.html
File metadata and controls
35 lines (32 loc) · 1.42 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
<!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>
<div class="container" style="width: 95%; padding: 5px;">
<div class="center-align" style="margin-top: 20px;">
<i class="material-icons large green-text">check_circle</i>
<h5><b>All Done!</b></h5>
</div>
<div class="card-panel green lighten-5" style="font-size: 0.9rem;">
<p>The passwords have been successfully updated, and the sheet has been shared with the teacher.</p>
</div>
<p style="font-size: 0.85rem; color: #757575;">
Click <b>CLOSE</b> to finish. SPOGOU will perform a final cleanup by removing the temporary 'Log' and 'Group' sheets.
</p>
<div class="center-align" style="margin-top: 30px;">
<button class="btn waves-effect waves-light blue" id="btnClose">CLOSE</button>
</div>
</div>
<script>
document.getElementById("btnClose").addEventListener("click", function(){
this.disabled = true;
google.script.run.closeSidebarFinished();
});
</script>
</body>
</html>