aboutsummaryrefslogtreecommitdiff
path: root/app/templates/reset_password_request.html
diff options
context:
space:
mode:
Diffstat (limited to 'app/templates/reset_password_request.html')
-rw-r--r--app/templates/reset_password_request.html20
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 %}