-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (31 loc) · 1.33 KB
/
index.html
File metadata and controls
37 lines (31 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Hack Oldham - Download your sign in code</title>
<link rel="stylesheet" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body>
<img id="CodeImg" src="">
<h1>Download your QR Code to sign in</h1>
<h2>How do I use the QR Code?</h2>
<p>When entering the building scan the image that is saved on your mobile device on the IPad on the front post.</p>
<h2>Where could I save this?</h2>
<p>We reccomend saving this to your images or a file on your phone. You could also bookmark this page or save to
your home screen</p>
<h2>How long until we can use actual membership cards?</h2>
<p>We expect the cards to be ready to be ordered byt he end of January once members get access to the Member Mojo
system.</p>
<script>
$(document).ready(function () {
const urlParams = new URLSearchParams(window.location.search);
const memberNumber = urlParams.get('q');
path = "IMG/" + memberNumber + ".png";
$('#CodeImg').attr("src", path);
});
</script>
</body>
</html>