-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqr.html
58 lines (50 loc) · 1.22 KB
/
qr.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" href="#" />
<style>
.center {
height:90vh;
position: relative;
}
.center a {
font-family: Tahoma, Verdana, Arial, sans-serif;
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
color: grey;
}
.gray {
color: grey;
}
</style>
</head>
<body>
<p><a href="./" class="gray">Change Machine ID</a></p>
<div class="center"><a id="qrcode"></a></div>
</body>
<script src="qrcode.js"></script>
<script type="text/javascript">
function getCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
document.cookie = name+'=; Max-Age=-99999999;';
}
var x = getCookie('machineId');
if (x) {
var urlBase = location.href.substring(0, location.href.lastIndexOf("/")+1)
new QRCode(document.getElementById("qrcode"), urlBase + x);
}
</script>
</html>