-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcovid-vaccine-qr-gen.html
62 lines (53 loc) · 1.98 KB
/
covid-vaccine-qr-gen.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
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<title>Patient List</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/src/jquery.csv.min.js"></script>
<!--<script src="https://cdn.jsdelivr.net/npm/[email protected]/qrcode.js"></script>-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/lrsjng.jquery-qrcode/0.18.0/jquery-qrcode.min.js"
integrity="sha512-P9oNnyfvOZrY1H0D5js+UcLZr+vLkX50glCUlpJAd/RL84+KBtGI4yvH5YVM5TejD+jbURwQq3C/7hgYWOo8bQ=="
crossorigin="anonymous"></script>
<style>
.col-print-6 {
width: 50%;
float: left;
height: 450px;
}
.page-break-clear {
clear: both;
}
.page-break {
page-break-after: always;
/* depreciating, use break-after */
break-after: page;
height: 0px;
display: block !important;
}
.qr-code canvas {
margin: 0 auto;
width: 128px;
height: 128px;
}
table {
text-align: center;
width: 100%;
}
html,
body {
height: 100%
}
</style>
</head>
<body>
<h1>The tool has moved</h1>
<p><a href="https://durhamstudenthealth.co.uk/qr">Find the latest version here</a>.</p>
</body>
</html>