templates/reset_password/request.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
    
    {% block title %}Reset your password{% endblock %}
    
    {% block body %}
        <div class="container">
            <div class="row py-4">
                <div class="col-3"></div>
                <div class="col-6">
                    <h4>Reset your password</h4>
                    {{ form_start(requestForm) }}
                        {{ form_row(requestForm.email) }}
                        <div>
                            <small>
                                Enter your email address and we will send you a
                                link to reset your password.
                            </small>
                        </div>
                        <div class="row">
                            <div class="col-12 text-end py-2">
                                 <button class="btn btn-primary">Send Password Reset Email</button>
                            </div>
                        </div>
                    {{ form_end(requestForm) }}
                </div>
                <div class="col-3"></div>
            </div>
        </div>
    {% endblock %}