summaryrefslogtreecommitdiff
path: root/talermerchantdemos/landing/templates/index.html.j2
blob: cc6b8745b06fa134f023347bcf68e93eb92e0635 (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
{% 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 %}