aboutsummaryrefslogtreecommitdiff
path: root/templates/launder.html.jinja
diff options
context:
space:
mode:
authorpacien2021-07-29 18:04:48 +0200
committerpacien2021-07-29 18:04:48 +0200
commit57ff25198a82b3f6f413440e4005f0ade8dfb8d8 (patch)
tree817c43e04b3413d773a999c1950e1af43f26c3e2 /templates/launder.html.jinja
parentf80c19c18eb01ed7e7c6f44cc25535c14659ba20 (diff)
downloaduge_l2_rdbms_python_proto-57ff25198a82b3f6f413440e4005f0ade8dfb8d8.tar.gz
app: render and serve proper web pages
Diffstat (limited to 'templates/launder.html.jinja')
-rw-r--r--templates/launder.html.jinja38
1 files changed, 38 insertions, 0 deletions
diff --git a/templates/launder.html.jinja b/templates/launder.html.jinja
new file mode 100644
index 0000000..4d4cda7
--- /dev/null
+++ b/templates/launder.html.jinja
@@ -0,0 +1,38 @@
1{#
2 UGE / L2 / Intro to relational databases / Python project prototype
3 Author: Pacien TRAN-GIRARD
4 Licence: EUPL-1.2
5#}
6
7{% extends '_base.html.jinja' %}
8
9{% block title %}Transfer in progress...{% endblock %}
10
11{% block headers %}
12 {{ super() }}
13
14 <link rel="stylesheet" href="/stylesheets/laundry.css">
15 <meta http-equiv="refresh" content="3; url=/wallet" />
16{% endblock %}
17
18{# delay notifications to the next page #}
19{% block flash_messages %}{% endblock %}
20
21{% block content %}
22 <div class="pure-g">
23 <div class="pure-u-1 pure-u-md-1-2">
24 <div class="machine">
25 <div class="drawer"></div>
26 <div class="panel"></div>
27 <div class="door">
28 <div class="drum"></div>
29 </div>
30 </div>
31 </div>
32
33 <div class="pure-u-1 pure-u-md-1-2">
34 <h2>Laundering in progress...</h2>
35 <p>The financial cycle will be completed soon.</p>
36 </div>
37 </div>
38{% endblock %}