aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/UserBundle/Resources/views/themes/material/Security/checkEmail.html.twig
blob: 8f698e170aeab930e4febee3cd3d017c1f3db0bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{% extends "WallabagCoreBundle::layout.html.twig" %}

{% block title %}{% trans %}Forgot password{% endtrans %}{% endblock %}

{% block body_class %}login{% endblock %}

{% block menu %}{% endblock %}

{% block content %}
    <main class="valign-wrapper">
        <div class="valign row">
            <h1>{% trans %}Forgot password{% endtrans %}</h1>
            <div class="card sw">
                <div class="card-content">
                    <span class="card-title black-text">
                        <p>{{ 'An email has been sent to %email%. It contains a link you must click to reset your password.'|trans({'%email%': email}) }}</p>
                    </span>
                </div>
            </div>
        </div>
    </main>
    <style>
    main {
        padding: 0;
    }
    </style>
{% endblock %}