From b17874a7d58e1ae853935a564b205566efd9ed74 Mon Sep 17 00:00:00 2001 From: Alexandr Danilov Date: Thu, 6 Aug 2015 04:22:45 +0300 Subject: Many corrections material theme --- .../material/Security/forgotPassword.html.twig | 56 ++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 src/Wallabag/CoreBundle/Resources/views/themes/material/Security/forgotPassword.html.twig (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/material/Security/forgotPassword.html.twig') diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Security/forgotPassword.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Security/forgotPassword.html.twig new file mode 100644 index 00000000..7d7fea6f --- /dev/null +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Security/forgotPassword.html.twig @@ -0,0 +1,56 @@ +{% extends "WallabagCoreBundle::layout.html.twig" %} + +{% block title %}{% trans %}Forgot password{% endtrans %}{% endblock %} + +{% block body_class %}login{% endblock %} + +{% block menu %}{% endblock %} + +{% block content %} +
+
+

{% trans %}Forgot password{% endtrans %}

+
+
+
+ +

{% trans %}Enter your email address below and we'll send you password reset instructions.{% endtrans %}

+ + {% if form_errors(form) %} + {{ form_errors(form) }} + {% endif %} + + {% for flashMessage in app.session.flashbag.get('notice') %} +

{{ flashMessage }}

+ {% endfor %} + + {% if form_errors(form.email) %} + {{ form_errors(form.email) }} + {% endif %} + +
+ {{ form_label(form.email) }} + {{ form_widget(form.email) }} +
+ +
+
+ +
+ {{ form_rest(form) }} +
+
+
+
+ +{% endblock %} + +{% block footer %} +{% endblock %} \ No newline at end of file -- cgit v1.2.3