This repository has been archived by the owner on May 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pdt-qr-codes.html
98 lines (93 loc) · 2.61 KB
/
pdt-qr-codes.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<head>
<style>
@media only screen and (max-width: 480px) {
.full {
display: block;
width: 100%;
}
td {
padding-bottom: 1rem;
}
}
</style>
</head>
<body>
<table
style="
width: 100%;
max-width: 650px;
margin: auto;
border-spacing: 1rem;
font-family: sans-serif;
background: #f1f5f9;
"
>
<tr>
<td>
Note: Travellers are subject to the country or region's requirements prior to travel. The QR code used for
verification is based on your
<u>destination country</u>.
</td>
</tr>
</table>
<table style="width: 100%; max-width: 650px; margin: auto; border-spacing: 1rem; font-family: sans-serif" dir="rtl">
<tr>
<td dir="ltr" width="100%" class="full">
<b>Online QR Verification</b>
<br /><br />
This QR Code requires an internet connection to verify.
</td>
</tr>
<tr>
<td dir="ltr" style="text-align: center" class="full">
<img
style="max-width: 200px; margin: auto; padding: 0.5rem; border: 1px solid #e2e8f0"
src="https://i.imgur.com/uw4drMy.png"
/>
</td>
</tr>
</table>
<hr style="max-width: 650px; border: 0; border-top: 1px solid #cfd8e3" />
<table style="width: 100%; max-width: 650px; margin: auto; border-spacing: 1rem; font-family: sans-serif">
<tr>
<td width="100%" class="full">
<b>Offline QR Verification (EU DCC-compatible)</b>
<br /><br />
This QR Code does not require an internet connection to verify. Some EU countries may only support this form of
verification.
<br /><br />
This may also be used for public health measures beyond travel within the EU and should be produced to
authorities when required.
</td>
</tr>
<tr>
<td align="center">
<div
style="
text-align: center;
page-break-inside: avoid;
border: 4px solid #a3bffa;
border-radius: 12px;
padding: 8px;
width: 250px;
"
>
<p
style="
font-weight: bold;
text-align: center;
page-break-inside: avoid;
color: #4c51bf;
font-size: 14px;
line-height: 1.5;
margin: 0;
padding-bottom: 4px;
"
>
OFFLINE QR (EU DCC)
</p>
<img style="width: 240px; margin: auto" src="https://i.imgur.com/uw4drMy.png" />
</td>
</tr>
</table>
</body>