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

  1. {% extends '/layout/base.html.twig' %}
  2. {% block title %}RĂ©initialiser votre mot de passe{% endblock %}
  3. {% block header %}{% endblock %}
  4. {% block body %}
  5.     {% for flash_error in app.flashes('reset_password_error') %}
  6.         <div class="alert alert-danger" role="alert">{{ flash_error }}</div>
  7.     {% endfor %}
  8.     <div class="authentification reset">
  9.         {{ form_start(requestForm) }}
  10.         <div class="authentification__form reset_form">
  11.             <div class="reset_box">
  12.                 <div class="authentification_box_header">
  13.                     <div class="authentification__logo-box">
  14.                         <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>
  15.                     </div>
  16.                     <div class="authentification_box_heading">
  17.                         <h3 class="heading-tertiary">RĂ©initialiser votre mot de passe</h3>
  18.                     </div>
  19.                 </div>
  20.                 <div class="reset_paragraph">
  21.                     <p class="paragraph">Entrez votre adresse e-mail et nous vous enverrons un lien pour rĂ©initialiser votre mot de passe.</p>
  22.                 </div>
  23.                 <div class="reset_box_info-zone">
  24.                     <label class="authentification_box_label">Email</label><br>
  25.                     {#                        <input type="email" name="email" class="authentification_box_input reset_box_input" placeholder="arctriservices@gmail.com">#}
  26.                     {{ form_widget(requestForm.email, {'attr': {'class':"authentification_box_input reset_box_input", 'placeholder':'Entrez votre adresse email',}}) }}
  27.                 </div>
  28.                 <div class="authentification_box_button">
  29.                     <div class="reset_box_button_container">
  30.                         <input type="submit" value="Connexion" class="authentification_button reset_button"><br><br>
  31.                     </div>
  32.                 </div>
  33.             </div>
  34.         </div>
  35.         {{ form_end(requestForm) }}
  36.     </div>
  37. {% endblock %}
  38.  {% block footer %}{% endblock %}
  39. {#    {% for flash_error in app.flashes('reset_password_error') %}#}
  40. {#        <div class="alert alert-danger" role="alert">{{ flash_error }}</div>#}
  41. {#    {% endfor %}#}
  42. {#    <h1>Reset your password</h1>#}
  43. {#    {{ form_start(requestForm) }}#}
  44. {#        {{ form_row(requestForm.email) }}#}
  45. {#        <div>#}
  46. {#            <small>#}
  47. {#                Enter your email address and we will send you a#}
  48. {#                link to reset your password.#}
  49. {#            </small>#}
  50. {#        </div>#}
  51. {#        <button class="btn btn-primary">Send password reset email</button>#}
  52. {#    {{ form_end(requestForm) }}#}
  53. {#{% endblock %}#}