summaryrefslogtreecommitdiff
path: root/contrib/offer_tip.en.mcpp
blob: ea6ec59a8ea892c4855559ef80f7262296fece39 (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
<!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>

<section id="main" class="content">
<h1 align="center">Collect Taler tip</h1>
<div align="center" class="taler-installed-hide">
  <p>
  Scan this QR code with your Taler mobile wallet:
  </p>
  <div class="qr">
    {{{taler_tip_qrcode_svg}}}
  </div>
  <p>
    <button onclick="window.location.href='{{taler_tip_uri}}';">
      Or open your Taller wallet
    </button>
  </p>
  <p>
  <a href="https://wallet.taler.net/">Don't have a Taler wallet yet? Install it!</a>
  </p>
</div>
<hr />
</section>
#include "footer.html"