aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/recover.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/templates/recover.html')
-rw-r--r--src/web/templates/recover.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/web/templates/recover.html b/src/web/templates/recover.html
new file mode 100644
index 00000000..c1176d55
--- /dev/null
+++ b/src/web/templates/recover.html
@@ -0,0 +1,18 @@
+{% extends "layout.html" %}
+{% block content %}
+<div class="container">
+ <div class="well">
+ <h2>{{ _('Recover your account') }}</h2>
+ {% for message in form.email.errors %}
+ <div class="flash">{{ message }}</div>
+ {% endfor %}
+ <form action="{{ url_for('recover') }}" method=post>
+ {{ form.hidden_tag() }}
+ <div class="form-group">
+ {{ form.email(class_="form-control", placeholder=_('Your email')) }}
+ </div>
+ {{ form.submit(class_="btn btn-default") }}
+ </form>
+ </div>
+</div><!-- /.container -->
+{% endblock %}
bgstack15