aboutsummaryrefslogtreecommitdiff
path: root/templates/launder.html.jinja
blob: 4d4cda7738aa1a6620a064e3a07c8b8bf0f6d730 (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
{#
  UGE / L2 / Intro to relational databases / Python project prototype
  Author: Pacien TRAN-GIRARD
  Licence: EUPL-1.2
#}

{% extends '_base.html.jinja' %}

{% block title %}Transfer in progress...{% endblock %}

{% block headers %}
  {{ super() }}

  <link rel="stylesheet" href="/stylesheets/laundry.css">
  <meta http-equiv="refresh" content="3; url=/wallet" />
{% endblock %}

{# delay notifications to the next page #}
{% block flash_messages %}{% endblock %}

{% block content %}
  <div class="pure-g">
    <div class="pure-u-1 pure-u-md-1-2">
      <div class="machine">
        <div class="drawer"></div>
        <div class="panel"></div>
        <div class="door">
          <div class="drum"></div>
        </div>
      </div>
    </div>

    <div class="pure-u-1 pure-u-md-1-2">
      <h2>Laundering in progress...</h2>
      <p>The financial cycle will be completed soon.</p>
    </div>
  </div>
{% endblock %}