From b2618e9404b84cc62d4becb02436233a0d53b375 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 25 Nov 2015 22:45:43 +0100 Subject: Rfactorization. Just a start... --- web/templates/recover.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 web/templates/recover.html (limited to 'web/templates/recover.html') diff --git a/web/templates/recover.html b/web/templates/recover.html new file mode 100644 index 00000000..c1176d55 --- /dev/null +++ b/web/templates/recover.html @@ -0,0 +1,18 @@ +{% extends "layout.html" %} +{% block content %} +
+
+

{{ _('Recover your account') }}

+ {% for message in form.email.errors %} +
{{ message }}
+ {% endfor %} +
+ {{ form.hidden_tag() }} +
+ {{ form.email(class_="form-control", placeholder=_('Your email')) }} +
+ {{ form.submit(class_="btn btn-default") }} +
+
+
+{% endblock %} -- cgit