templates/emails/reset_password/request.html.twig line 1

  1. {% extends '/layout/base.html.twig' %}
    
    {% block title %}Réinitialiser votre mot de passe{% endblock %}
    {% block header %}{% endblock %}
    
    
    {% block body %}
    
        {% for flash_error in app.flashes('reset_password_error') %}
            <div class="alert alert-danger" role="alert">{{ flash_error }}</div>
        {% endfor %}
    
        <div class="authentification reset">
            {{ form_start(requestForm) }}
            <div class="authentification__form reset_form">
                <div class="reset_box">
    
                    <div class="authentification_box_header">
                        <div class="authentification__logo-box">
                            <a href="{{ path('app_home') }}"><img src="{{ asset('/img/LOGO_SITE_WEB_ARCTRI_SERVICES/SVG/LOGO_ARCTRI_SERVICES_Plan_de_travail_1.svg')}}" alt="logo" class="authentification__logo"></a>
                        </div>
                        <div class="authentification_box_heading">
                            <h3 class="heading-tertiary">Réinitialiser votre mot de passe</h3>
                        </div>
                    </div>
    
                    <div class="reset_paragraph">
                        <p class="paragraph">Entrez votre adresse e-mail et nous vous enverrons un lien pour réinitialiser votre mot de passe.</p>
                    </div>
    
                    <div class="reset_box_info-zone">
                        <label class="authentification_box_label">Email</label><br>
                        {#                        <input type="email" name="email" class="authentification_box_input reset_box_input" placeholder="arctriservices@gmail.com">#}
                        {{ form_widget(requestForm.email, {'attr': {'class':"authentification_box_input reset_box_input", 'placeholder':'Entrez votre adresse email',}}) }}
    
                    </div>
    
                    <div class="authentification_box_button">
                        <div class="reset_box_button_container">
                            <input type="submit" value="Connexion" class="authentification_button reset_button"><br><br>
                        </div>
                    </div>
    
                </div>
            </div>
            {{ form_end(requestForm) }}
        </div>
    
    {% endblock %}
    
    
     {% block footer %}{% endblock %}
    
    {#    {% for flash_error in app.flashes('reset_password_error') %}#}
    {#        <div class="alert alert-danger" role="alert">{{ flash_error }}</div>#}
    {#    {% endfor %}#}
    {#    <h1>Reset your password</h1>#}
    
    {#    {{ 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>#}
    
    {#        <button class="btn btn-primary">Send password reset email</button>#}
    {#    {{ form_end(requestForm) }}#}
    {#{% endblock %}#}