-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinitialize.html
More file actions
34 lines (33 loc) · 777 Bytes
/
initialize.html
File metadata and controls
34 lines (33 loc) · 777 Bytes
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
<html>
<head>
<script type="text/javascript" src="jquery-3.1.0.min.js"></script>
<script type = "text/javascript" src = "initialize.js"></script>
<style>
#info_blocked {
display: none;
}
#prevPageRedirectButton {
display: none;
}
.centered {
position: fixed;
top: 50%;
left: 50%;
/* bring your own prefixes */
transform: translate(-50%, -50%);
}
</style>
</head>
<body>
<div class="centered">
<h1>Welcome to Lucy!</h1>
<div id="info_blocked">
<p>Permission to use microphone is blocked. To change: </p>
<ul>
<li>In the address bar, click on camera icon and select the "Always allow..." option.</li>
<li>Either refresh the page or click the Lucy icon to be redirected.</li>
</ul>
</div>
</div>
</body>
</html>