summaryrefslogtreecommitdiff
path: root/talermerchantdemos/landing/templates/index.html.j2
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-10-11 17:03:12 +0200
committerChristian Grothoff <christian@grothoff.org>2020-10-11 17:03:12 +0200
commitd69934f816c7e48d758452dd443eca0f02dd14ce (patch)
treee0b4493cc328b2bbda16a83edf443a697d47957d /talermerchantdemos/landing/templates/index.html.j2
parentaa06ddd3cf1de03922fc4e45e46ef3476a69e3f8 (diff)
downloadtaler-merchant-demos-d69934f816c7e48d758452dd443eca0f02dd14ce.tar.gz
taler-merchant-demos-d69934f816c7e48d758452dd443eca0f02dd14ce.tar.bz2
taler-merchant-demos-d69934f816c7e48d758452dd443eca0f02dd14ce.zip
add landing subpage, simplify deployment
Diffstat (limited to 'talermerchantdemos/landing/templates/index.html.j2')
-rw-r--r--talermerchantdemos/landing/templates/index.html.j273
1 files changed, 73 insertions, 0 deletions
diff --git a/talermerchantdemos/landing/templates/index.html.j2 b/talermerchantdemos/landing/templates/index.html.j2
new file mode 100644
index 0000000..cc6b874
--- /dev/null
+++ b/talermerchantdemos/landing/templates/index.html.j2
@@ -0,0 +1,73 @@
+{% extends "templates/base.html.j2" %}
+{% block main %}
+ <article>
+ <h2>Step 1: Install the Taler wallet</h2>
+ Install the wallet from the <a href="https://wallet.taler.net/">installation page</a>.
+ It only takes one click.
+ <p class="bluebox taler-installed-hide">
+ You don't have a wallet installed yet.
+ </p>
+ <p class="greenbox taler-installed-show">
+ Congratulations, you have installed the Taler wallet correctly.
+ You can now proceed with the next steps.
+ </p>
+ </article>
+
+ <article>
+ <h2>Step 2: Withdraw coins</h2>
+ <p>
+
+ Now you can withdraw coins into your wallet by going to our <a href="{{ bank_url }}">bank</a>.
+
+ In this demo you are paying with KUDOS, an imaginary currency. When you
+ create an account at our bank, you'll get 100 KUDOS for free.
+ </p>
+ <p class="graybox">
+ We cannnot check if you were able to complete this step, since websites
+ cannot see the balance in your wallet. Please click on the Taler icon
+ in your browser to check your balance.
+ </p>
+ </article>
+
+ <article>
+ <h2>Step 3: Pay</h2>
+ We have two demo merchants where you can spend your coins:
+ <ul>
+ <li>
+ The <a href="{{ merchant_blog_url }}">essay store</a>, where you can pay KUDOS for
+ individual chapters of Richard Stallman's book "Free Software, Free
+ Society", which is also available for free at <a href="http://www.fsf.org/">the FSF</a>.
+ </li>
+ <li>
+ The <a href="{{ merchant_donations_url }}">project donation website</a>, where
+ you can show respect to a software project of your choice
+ by giving them KUDOS.
+ </li>
+ </ul>
+ </article>
+ <article>
+ <h2>Step 4: Check money flow</h2>
+ <ul>
+ <li>
+ Check if people who received your Taler payment got eventually
+ paid by the exchange via a wire transfer; visit the:
+ <a href="{{ bank_url }}/public-accounts">public accounts page</a> at the bank.
+ Note that only those account whose owners gave permission are showed
+ on that page.
+ </li>
+ </ul>
+ </article>
+ <!-- article>
+ <h2>Step 5: Merchant? Consult back-office</h2>
+ <ul>
+ <li>
+ If you are a merchant, you can check the <a href="{{ backoffice_url }}">back-office</a>
+ website to see how your Taler transactions got payed back by bank wire transfers.
+ </li>
+ </ul>
+ </article -->
+ <article>
+ <h2>Step 5: Reach out to us</h2>
+ Let us know what you think by <a href="mailto:demo-feedback@taler.net">contacting us</a>.
+ </article>
+{% endblock %}