landing-index.html.j2 (3713B)
1 {% extends "landing-base.html.j2" %} 2 {% block main %} 3 <article> 4 <h2>{{ gettext("Step 1: Install the Taler wallet") }}</h2> 5 <p> 6 {{ 7 gettext('Install the wallet from the <a href=\"{link}\">installation page</a>.').format(link="https://wallet.taler.net/") + "<br>" + 8 gettext('Installation only takes one click.') 9 }} 10 </p> 11 <p class="graybox"> 12 {{ gettext('After installation, you may be asked to grant the browser-based Taler wallet additional optional permissions that allow it to improve your user experience.') }} <br> 13 {{ gettext('These permissions will allow the wallet to automatically open if a page asks for a Taler payment.') }} <br> 14 {{ gettext('Regardless of the permissions you grant, the wallet will never transmit information about you or your browsing history to anyone.') }} 15 </p> 16 </article> 17 18 <article> 19 <h2>{{ gettext("Step 2: Withdraw coins") }}</h2> 20 <p> 21 {{ 22 gettext('In this demo you are paying with {currency}, an imaginary currency.').format(currency=merchant_currency) + "<br>" + 23 gettext('To withdraw {currency} coins you must first create an account at our <a href="{bank}">bank</a>.').format(currency=merchant_currency,bank=bank_register_url) + "<br>" + 24 gettext('Signing up only requires you to pick a username and password.') + "<br>" + 25 gettext('When you create an account at our bank, you will be credited 100 {currency} for signing up.').format(currency=merchant_currency) + "<br>" + 26 gettext("Afterwards, use the bank's Web interface to authorize the transfer of {currency} to your wallet.").format(currency=merchant_currency) 27 }} 28 </p> 29 <p class="graybox"> 30 {{ gettext('Once you have completed this step, you can click on the Taler icon in your browser to check your balance.') }} 31 </p> 32 </article> 33 34 <article> 35 <h2>{{ gettext("Step 3: Pay") }}</h2> 36 <p> 37 {{ 38 gettext("We have two demo merchants where you can spend your coins:") 39 }} 40 </p> 41 <ul> 42 <li> 43 {{ 44 gettext('At the <a href="{blog}">essay store</a> you can pay in {currency} for individual chapters of Richard Stallman's book "Free Software, Free Society".').format(blog=merchant_blog_url,currency=merchant_currency) + "<br>" + 45 gettext('The book is also available for free at <a href="{fsf}">the FSF</a>.').format(fsf="http://www.fsf.org/") 46 }} 47 </li> 48 <li> 49 {{ 50 gettext('At the project <a href="{donations}">donation website</a> you can show respect to a software project of your choice by donating {currency} to them.').format(donations=merchant_donations_url,currency=merchant_currency) 51 }} 52 </li> 53 </ul> 54 </article> 55 <article> 56 <h2>{{ gettext("Step 4: Check money flow") }}</h2> 57 <p> 58 {{ 59 gettext('You can see the wire transfers from the escrow account of the exchange to the merchants on the <a href="{bank}">public accounts page</a> of the bank.').format(bank=bank_public_accounts_url) + "<br>" + 60 gettext('Note that only accounts configured to be publicly viewable are shown on that page.') 61 }} 62 </p> 63 </article> 64 <article> 65 <h2>{{ gettext("Step 5: Reach out to us") }}</h2> 66 <p> 67 {{ 68 gettext("We appreciate feedback about Taler and this demonstrator.") + "<br>" + 69 gettext('Let us know what you think by <a href="{link}">contacting us</a>.').format(link="mailto:demo-feedback@taler.net") 70 }} 71 </p> 72 </article> 73 {% endblock %}