aboutsummaryrefslogtreecommitdiff
path: root/app/templates/auth/register.html
diff options
context:
space:
mode:
Diffstat (limited to 'app/templates/auth/register.html')
-rw-r--r--app/templates/auth/register.html17
1 files changed, 16 insertions, 1 deletions
diff --git a/app/templates/auth/register.html b/app/templates/auth/register.html
index c430b38..e2a49a1 100644
--- a/app/templates/auth/register.html
+++ b/app/templates/auth/register.html
@@ -1,11 +1,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-md-4">
+ <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 %}