aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/UserBundle/Resources/views/Resetting/request_content.html.twig
blob: 7a5ac83836c421478d6c2f469a16f70f58fb5d11 (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
28
29
30
{% trans_default_domain 'FOSUserBundle' %}

<form action="{{ path('fos_user_resetting_send_email') }}" method="POST" class="fos_user_resetting_request">
    <div class="card-content">
        <div class="row">
            <p>{{ 'security.resetting.description'|trans({}, "messages") }}</p>

            {% for flashMessage in app.session.flashbag.get('notice') %}
                <span class="black-text"><p>{{ flashMessage }}</p></span>
            {% endfor %}

            {% if invalid_username is defined %}
                <p>{{ 'resetting.request.invalid_username'|trans({'%username%': invalid_username}) }}</p>
            {% endif %}

            <div class="input-field col s12">
                <label for="username">{{ 'resetting.request.username'|trans }}</label>
                <input type="text" id="username" name="username" required="required" />
            </div>
        </div>
    </div>
    <div class="card-action center">
        <a href="{{ path('fos_user_security_login') }}" class="waves-effect waves-light grey btn">
            <i class="material-icons left"></i> {{ 'security.login.submit'|trans({}, "messages") }}
        </a>
        <button class="btn waves-effect waves-light" type="submit" name="send">
            {{ 'resetting.request.submit'|trans }}
        </button>
    </div>
</form>