summaryrefslogtreecommitdiff
path: root/template/cashier.html.j2
blob: 6a6b548ed524f4a068edca3905b000a4d84baf85 (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
69
70
71
72
73
74
75
76
77
78
{% extends "common/base.j2" %}

{% block head_content %}
<style type="text/css">
  .greenbox {
  background-color: #5EFF64;
  border: solid;
  border-radius: 5px;
  padding: 0.5em;
  }
  .bluebox {
  background-color: #C2C6FF;
  border: solid;
  border-radius: 5px;
  padding: 0.5em;
  }
  .error {
  font-style: italic;
  display: none;
  }
  #install-result {
  font-weight: bold;
  }

  main ul li {
  margin-bottom: 1em;
  }
</style>
{% endblock head_content %}

{% block body_content %}
    <!-- Jumbotron -->
    <div class="jumbotron">
      <div class="text-center">
      <h1 lang="en">Taler Cashier</h1>
      </div>
    </div>

  <div class="container">

    <div class="row">
      <div class="col-lg-12">
        {% trans %}
          This is the page for the Taler cashier App. It allows
          the cashier to grant Taler users the right to withdraw
          a certain amount of e-cash from the cashier's bank
          account. Thus, it offers
          an equivalent functionality to what you may find
          on the bank Web site when withdrawing from an account there.
        {% endtrans %}
        </a>.
      </div>
    </div> <!-- /row -->

    <div class="row">
      <div class="col-lg-6">
        <h2>Android 4.4 (API 18) or later</h2>
        <ul>
          <li>
            <a href="https://play.google.com/apps/testing/net.taler.cashier">
               {% trans %}
                 Install Android App from Google App Store, or
               {% endtrans %}
            </a>
          </li>
          <li>
            <a href="https://f-droid.org/en/packages/net.taler.cashier/">
               {% trans %}
                 Download App from F-Droid.org.
               {% endtrans %}
            </a>
          </li>
        </ul>
      </div> <!-- /col-lg-6 -->

    </div> <!-- /row -->
  </div> <!-- /container -->
{% endblock body_content %}