aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/UserBundle/Resources/views/themes/material/Security/checkEmail.html.twig
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-10-03 06:29:55 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2015-10-03 13:31:48 +0200
commit0a878469d4038c36c84d1dd707265d880fa342e8 (patch)
tree2e183d359d3f1f0767ebf56277f3fc7aa415ac3f /src/Wallabag/UserBundle/Resources/views/themes/material/Security/checkEmail.html.twig
parent1210dae10589515d6f3824c75639342c5e1d52dd (diff)
downloadwallabag-0a878469d4038c36c84d1dd707265d880fa342e8.tar.gz
wallabag-0a878469d4038c36c84d1dd707265d880fa342e8.tar.zst
wallabag-0a878469d4038c36c84d1dd707265d880fa342e8.zip
move some files to UserBundle
Diffstat (limited to 'src/Wallabag/UserBundle/Resources/views/themes/material/Security/checkEmail.html.twig')
-rw-r--r--src/Wallabag/UserBundle/Resources/views/themes/material/Security/checkEmail.html.twig27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/Wallabag/UserBundle/Resources/views/themes/material/Security/checkEmail.html.twig b/src/Wallabag/UserBundle/Resources/views/themes/material/Security/checkEmail.html.twig
new file mode 100644
index 00000000..8f698e17
--- /dev/null
+++ b/src/Wallabag/UserBundle/Resources/views/themes/material/Security/checkEmail.html.twig
@@ -0,0 +1,27 @@
1{% extends "WallabagCoreBundle::layout.html.twig" %}
2
3{% block title %}{% trans %}Forgot password{% endtrans %}{% endblock %}
4
5{% block body_class %}login{% endblock %}
6
7{% block menu %}{% endblock %}
8
9{% block content %}
10 <main class="valign-wrapper">
11 <div class="valign row">
12 <h1>{% trans %}Forgot password{% endtrans %}</h1>
13 <div class="card sw">
14 <div class="card-content">
15 <span class="card-title black-text">
16 <p>{{ 'An email has been sent to %email%. It contains a link you must click to reset your password.'|trans({'%email%': email}) }}</p>
17 </span>
18 </div>
19 </div>
20 </div>
21 </main>
22 <style>
23 main {
24 padding: 0;
25 }
26 </style>
27{% endblock %}