aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Security/checkEmail.html.twig
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2015-10-08 13:44:04 +0200
committerJeremy Benoist <j0k3r@users.noreply.github.com>2015-10-08 13:44:04 +0200
commitcf0ea8f113548191cdeb8d3727dd6d2ad25d19ed (patch)
tree2a90828aead04950e3cb141f4949da30d244d5fb /src/Wallabag/CoreBundle/Resources/views/themes/material/Security/checkEmail.html.twig
parent9dbcf9d418917201ec6b2598c84d5ecb1a94bfbc (diff)
parentfa853bb603d4c1d25ead3f26722a10906dd748d4 (diff)
downloadwallabag-cf0ea8f113548191cdeb8d3727dd6d2ad25d19ed.tar.gz
wallabag-cf0ea8f113548191cdeb8d3727dd6d2ad25d19ed.tar.zst
wallabag-cf0ea8f113548191cdeb8d3727dd6d2ad25d19ed.zip
Merge pull request #1472 from wallabag/v2-clean-views
fix #1470: clean material theme
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/material/Security/checkEmail.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/Security/checkEmail.html.twig27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Security/checkEmail.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Security/checkEmail.html.twig
deleted file mode 100644
index 8f698e17..00000000
--- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Security/checkEmail.html.twig
+++ /dev/null
@@ -1,27 +0,0 @@
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 %}