summaryrefslogtreecommitdiff
path: root/templates/inventory/base1.html
blob: 93d7decebd525d75a1919e156acd4609c70fbb69 (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
<!doctype html>
<!-- 
This file is part of the Taler Codeless Merchant.
(C) 2018 GNUnet e.V.

The Taler Codeless Merchant is free software: you can redistribute it and/or
modify it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or (at your
option) any later version.

The Taler Codeless Merchant is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License
for more details.

You should have received a copy of the GNU Affero General Public License along
with the Taler Codeless Merchant.  If not, see <https://www.gnu.org/licenses/>.

@author Shivam Kohli
@author Marcello Stanisci
@author Florian Dold
 -->
{% load staticfiles %}
<html data-taler-nojs="true">
  <head>
    <title>Merchant Demo</title>
    <link rel="stylesheet" type="text/css" href="{% static 'pure.css' %}" />
    <link rel="stylesheet" type="text/css" href="{% static 'web-common/demo.css' %}" />
    <link rel="stylesheet" type="text/css" href="{% static 'sidenav.css' %}" />
    <link rel="stylesheet" type="text/css" href="{% static 'web-common/taler-fallback.css' %}" id="taler-presence-stylesheet" />
    <link rel="stylesheet" type="text/css" href="{% static 'bank.css' %}" />
    {% block head %} {% endblock %}
  </head>
  <body>
    <div class="demobar">
      <h1><span class="tt adorn-brackets">Codeless Demo</span></h1>
      <h1><span class="it"><a href="">Merchant</a></span></h1>
      <p>Codeless is a platform for the merchant where they can manage their inventory and simultaneously create a 'Buy Now' button for the specific product. This code can be directly copy pasted on the seller's frontend and can be used for 'Pay with Taler'.</p>
        <li><a href="/accounts/login">Login</a></li>
        <li><a href="/signup">Register</a></li></li>
        <li><a href="/password_reset">Forget Password</a></li>
      <p>You can learn more about Taler on our main <a href="https://taler.net">website</a>.</p>
    </div>
    <div class="content">
      {% block headermsg %} {% endblock %}
      {% block content %} {% endblock %}
    </div>
  </body>
</html>