-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSidebarPasswordsPreped.html
More file actions
38 lines (36 loc) · 1.6 KB
/
SidebarPasswordsPreped.html
File metadata and controls
38 lines (36 loc) · 1.6 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
38
<!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;">
<h6><b>Step 2: Review Passwords</b></h6>
<div class="card-panel green lighten-4" style="font-size: 0.9rem; padding: 10px;">
<b>Passwords generated!</b> Please review the <b>Users</b> sheet.
</div>
<p style="font-size: 0.9rem;">
Verify that the passwords in the <b>Password</b> column are acceptable. You can edit them manually if needed.
</p>
<div class="row" style="margin-top: 20px;">
<div class="col s12">
<h6><b>Ready to proceed?</b></h6>
<p style="font-size: 0.85rem; color: #757575;">
Clicking the button below will set the new passwords and share this sheet with the teacher.
</p>
<button type="button" class="btn waves-effect waves-light blue" id="btnSetPass">SET PASSWORDS</button>
</div>
</div>
</div>
<script>
document.getElementById("btnSetPass").addEventListener("click", function(){
this.disabled = true;
this.textContent = "PROCEEDING...";
google.script.run.openSidebarSetPasswords();
});
</script>
</body>
</html>