blob: e2a49a19633cd53a3ddb4e8280954a2a952a5482 (
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
|
{% extends "base.html" %}
{% import 'bootstrap/wtf.html' as wtf %}
{% block styles %}
{{ super() }}
<style>
.legal {
text-align: justify;
}
</style>
{% endblock %}
{% block app_content %}
<h1>Register</h1>
<div class="row">
<div class="col-sm-4">
<h2>Registration Form</h2>
{{ wtf.quick_form(form) }}
</div>
<div class="col-sm-1">
</div>
<div class="legal col-sm-6">
{{ legal | safe}}
</div>
</div>
{% endblock %}
|