blob: 47f04c924c6cd2c642b525f6f04d66b7aa569fb7 (
plain)
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
|
<!DOCTYPE html>
#include "copyright.html"
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<noscript>
<meta http-equiv="refresh" content="1">
</noscript>
<title>Tip available</title>
#include "css.html"
</head>
<body>
<script>
let checkUrl = "{{& tip_status_url }}";
let delayMs = 500;
function check() {
let retried = false;
function retryOnce() {
if (!retried) {
retried = true;
check();
}
}
let req = new XMLHttpRequest();
req.onreadystatechange = function () {
if (req.readyState === XMLHttpRequest.DONE) {
if (req.status === 410) {
window.location.reload(true);
}
setTimeout(retryOnce, delayMs);
}
};
req.onerror = function () {
setTimeout(retryOnce, delayMs);
}
req.open("GET", checkUrl);
req.send();
}
setTimeout(check, delayMs);
</script>
<h1>Taler tip available</h1>
<div class="taler-installed-hide">
<p>
Please select your Taler wallet to pick up the tip.
</p>
</div>
<div>
<p>
Alternatively, you can scan this QR code to pick up the tip with your mobile wallet:
</p>
<div class="qr">
{{{taler_tip_qrcode_svg}}}
</div>
<p>
Finally, you could click <a href="{{taler_tip_uri}}">this link</a> to
try to open your system's Taler wallet if it exists.
</p>
</div>
<hr />
</section>
#include "footer.html"
|