diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-03-18 16:16:58 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-03-18 16:16:58 +0000 |
| commit | ce1fe100a2dc0aa0baada3c8f214d787333148ea (patch) | |
| tree | ea5924fb67dd24bebab03a56d372df4692936e24 /app/templates/reset_password_request.html | |
| parent | add errors, email, and reset password (diff) | |
| download | AnnotateChange-ce1fe100a2dc0aa0baada3c8f214d787333148ea.tar.gz AnnotateChange-ce1fe100a2dc0aa0baada3c8f214d787333148ea.zip | |
use bootstrap
Diffstat (limited to 'app/templates/reset_password_request.html')
| -rw-r--r-- | app/templates/reset_password_request.html | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/app/templates/reset_password_request.html b/app/templates/reset_password_request.html index 914c593..c516141 100644 --- a/app/templates/reset_password_request.html +++ b/app/templates/reset_password_request.html @@ -1,15 +1,11 @@ {% extends "base.html" %} +{% import 'bootstrap/wtf.html' as wtf %} -{% block content %} - <h1>Reset Password</h1> - <form action="" method="post"> - {{ form.hidden_tag() }} - <p> - {{ form.email.label }}<br> - {{ form.email(size=64) }}<br> - {% for error in form.email.errors %} - <span style="color: red;">[{{ error }}]</span> - {% endfor %} - </p> - </form> +{% block app_content %} +<h1>Reset Password</h1> +<div class="row"> + <div class="col-md-4"> + {{ wtf.quick_form(form) }} + </div> +</div> {% endblock %} |
