taler-www

Main taler.net website
Log | Files | Refs | Submodules | README | LICENSE

cashier.html.j2 (1965B)


      1 {% extends "common/base.j2" %}
      2 {% block subtitle %}{{ _("Cashier")}}{% endblock subtitle %}
      3 {% block head_content %}
      4 <style type="text/css">
      5   .greenbox {
      6   background-color: #5EFF64;
      7   border: solid;
      8   border-radius: 5px;
      9   padding: 0.5em;
     10   }
     11   .bluebox {
     12   background-color: #C2C6FF;
     13   border: solid;
     14   border-radius: 5px;
     15   padding: 0.5em;
     16   }
     17   .error {
     18   font-style: italic;
     19   display: none;
     20   }
     21   #install-result {
     22   font-weight: bold;
     23   }
     24 
     25   main ul li {
     26   margin-bottom: 1em;
     27   }
     28 </style>
     29 {% endblock head_content %}
     30 
     31 {% block body_content %}
     32     <!-- Jumbotron -->
     33     <div class="jumbotron">
     34       <div class="text-center">
     35       <h1 lang="en">Taler Cashier</h1>
     36       </div>
     37     </div>
     38 <main id="maincontent">
     39   <div class="container">
     40 
     41     <div class="row">
     42       <div class="col-lg-12">
     43         {% trans %}
     44           This is the page for the Taler cashier App. It allows
     45           the cashier to grant Taler users the right to withdraw
     46           a certain amount of e-cash from the cashier's bank
     47           account. Thus, it offers
     48           an equivalent functionality to what you may find
     49           on the bank Web site when withdrawing from an account there.
     50         {% endtrans %}
     51         </a>.
     52       </div>
     53     </div> <!-- /row -->
     54 
     55     <div class="row">
     56       <div class="col-lg-6">
     57         <h2>Android 4.4 (API 18) or later</h2>
     58         <ul>
     59           <li>
     60             <a href="https://play.google.com/apps/testing/net.taler.cashier">
     61                {% trans %}
     62                  Install Android App from Google App Store, or
     63                {% endtrans %}
     64             </a>
     65           </li>
     66           <li>
     67             <a href="https://f-droid.org/en/packages/net.taler.cashier/">
     68                {% trans %}
     69                  Download App from F-Droid.org.
     70                {% endtrans %}
     71             </a>
     72           </li>
     73         </ul>
     74       </div> <!-- /col-lg-6 -->
     75 
     76     </div> <!-- /row -->
     77   </div> <!-- /container -->
     78 {% endblock body_content %}