diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-07-31 17:49:41 +0100 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-07-31 17:49:41 +0100 |
| commit | c7900e5b1e2651a28410d13dfa58c37701b65692 (patch) | |
| tree | aa512be3dededdfe12a50b63f2cbf998cba652fe /app/templates | |
| parent | Clarify that points need to be clicked on (diff) | |
| download | AnnotateChange-c7900e5b1e2651a28410d13dfa58c37701b65692.tar.gz AnnotateChange-c7900e5b1e2651a28410d13dfa58c37701b65692.zip | |
Add terms and conditions to registration page
Diffstat (limited to 'app/templates')
| -rw-r--r-- | app/templates/auth/register.html | 17 |
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 %} |
