-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSidebarPrepPasswords.html
44 lines (41 loc) · 1.64 KB
/
SidebarPrepPasswords.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
<!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>Step two - Now SPOGOU is preparing the passwords.</b></h6>
<h6><b>Start</b></h6>
<blockquote>
<h6><b>Prepare passwords</b> - SPOGOU is creating easy passwords based on FirstName and some random numbers
</h6>
</blockquote>
<h6><b>Set passwords</b></h6>
<div class="card-panel blue lighten-2">
<h6>When SPOGOU is done you need to verify that the passwords look ok, and edit them if not.</h6>
<h6>Check the <b>Password</b> column in the sheet called <b>Users</b>.</h6>
<h6>When you have verified the passwords are to your liking, click the button below, or go to the Addons
menu for SPOGOU and select the<br><b>Set Passwords</b> option.</h6>
</div>
<div class="row">
<h6>SPOGOU will automatically set those passwords and share the file with the teacher.</h6>
<button type="button" class="btn-small waves-effect waves-light" id="btnSetPass" disabled>Set passwords</button>
</div>
</div>
<script>
document.getElementById("btnSetPass").addEventListener("click",goSetPass);
function goSetPass(){
google.script.run.openSidebarSetPasswords();
}
</script>
</body>
</html>