From b35e9773198ef2d8b37c4ca223f08147db47de0b Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Sat, 12 Dec 2015 21:14:28 +0100 Subject: moving the root of source code from / to /src/ --- src/web/templates/recover.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/web/templates/recover.html (limited to 'src/web/templates/recover.html') 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 %} +
+
+

{{ _('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