From 9068617fbb8957ae0cc97deff37bdaf7fb7dd966 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 3 Feb 2016 21:31:25 +0100 Subject: Fixed 'Page not found' error for the 'recover' page. --- src/web/templates/login.html | 2 +- src/web/templates/recover.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/web/templates/login.html b/src/web/templates/login.html index c37d6937..70e01f9c 100644 --- a/src/web/templates/login.html +++ b/src/web/templates/login.html @@ -25,6 +25,6 @@ {{ _('Sign up') }}   - {{ _('Forgot password') }} + {{ _('Forgot password') }} {% endblock %} diff --git a/src/web/templates/recover.html b/src/web/templates/recover.html index c1176d55..ada110dc 100644 --- a/src/web/templates/recover.html +++ b/src/web/templates/recover.html @@ -6,7 +6,7 @@ {% for message in form.email.errors %}
{{ message }}
{% endfor %} -
+ {{ form.hidden_tag() }}
{{ form.email(class_="form-control", placeholder=_('Your email')) }} -- cgit