From f1b5b52ca7cf7be99b64b031ca5d8a52e5228754 Mon Sep 17 00:00:00 2001 From: Marcello Stanisci Date: Mon, 20 Nov 2017 13:26:28 +0100 Subject: showing the homepage --- talersurvey/survey/templates/base.html | 62 +++++++++++++++++++++++++++++++++ talersurvey/survey/templates/index.html | 25 +++++++++++++ 2 files changed, 87 insertions(+) create mode 100644 talersurvey/survey/templates/base.html create mode 100644 talersurvey/survey/templates/index.html (limited to 'talersurvey/survey/templates') diff --git a/talersurvey/survey/templates/base.html b/talersurvey/survey/templates/base.html new file mode 100644 index 0000000..dc78eb0 --- /dev/null +++ b/talersurvey/survey/templates/base.html @@ -0,0 +1,62 @@ + + + + + + Taler Donation Demo + + + + + {% block styles %}{% endblock %} + {% block scripts %}{% endblock %} + + + +
+

Taler Demo

+

Donations

+

This is the donation page, you can make donations (with an imaginary currency for now) to free software projects.

+ +

You can learn more about Taler on our main website.

+
+ +
+ + + + {% block main %} + This is the main content of the page. + {% endblock %} +
+ +
+ + diff --git a/talersurvey/survey/templates/index.html b/talersurvey/survey/templates/index.html new file mode 100644 index 0000000..f842d6a --- /dev/null +++ b/talersurvey/survey/templates/index.html @@ -0,0 +1,25 @@ +{% extends "templates/base.html" %} + +{% block main %} +
+

+ In this page, you can participate in our survey about payment systems + and get a nice tip - via your Taler wallet - from this shop! +

+
+
+
+ {% if success %} + Congratulations, your reward has been successfully submitted! + {% endif %} + What do you prefer?
+ + + + + +
+ +
+
+{% endblock %} -- cgit v1.2.3