taler-merchant-demos

Python-based Frontends for the Demonstration Web site
Log | Files | Refs | Submodules | README | LICENSE

provision-index.html.j2 (1457B)


      1 {% extends "provision-base.html.j2" %}
      2 
      3 {% block main %}
      4 <h2>{{ gettext("Provision yourself a merchant instance!") }}</h2>
      5 
      6 <p>
      7 {{
      8   gettext("If you are a frontend developer and just want to integrate payments with Taler into your UI, simply provision yourself here a merchant instance and a corresponding bank account in this environment, and start using the merchant API on this site!")
      9 }}
     10 </p>
     11 
     12 <p>
     13 {{ gettext("On success you will receive a <b>merchant-ID</b> and an <b>access-token</b>. You need that information") }}
     14 <ul>
     15    <li>{{ gettext("to create orders via your merchant's own backend API and make changes in the merchant's inventory at our own <a href='{backend}'>merchant backend</a>, and").format(backend=backend_url) }}</li>
     16    <li>{{ gettext("to use the merchant's bank account at the <a href='{bank}'>bank</a> for this environment and see the incoming wire transfers from the payment service provider.").format(bank=bank_url) }}</li>
     17 </ul>
     18 
     19 </p>
     20 
     21 <div>
     22   <form action="{{ url_for('create',lang=getlang()) }}" method="post" class="pure-form">
     23     <div class="form">
     24       <div>
     25         <label for="fullname">
     26           {{ gettext("Enter the full name for your merchant:") }}
     27         </label>
     28         <input name="fullname" id="fullname" type="text" />
     29       
     30         <button class="pure-button pure-button-primary" name="submit">
     31             {{gettext("Create!")}}
     32         </button>
     33       </div>
     34     </div>
     35   </form>
     36 </div>
     37 
     38 
     39 
     40 {% endblock %}