templates/Security/resetPassword.html.twig line 1

  1. {% extends 'layout_public.html.twig' %}
  2. {% import "Common/macros.html.twig" as macros %}
  3. {% form_theme form with 'Common/form_theme.html.twig' %}
  4. {% block content %}
  5. <div class="page" id="security-reset-password">
  6. <form action="{{ path('app_reset_password') }}" method="post" class="form-security">
  7. <div class="form-body form-security">
  8. <div class="LogoSecurity">
  9. <img src="{{ asset('images/app/security/') }}munireg-finallogo.svg" alt="" >
  10. </div>
  11. {% if formIsValid %}
  12. <p>If this email is associated with a user of the application then an email has been sent to reset your password.</p>
  13. {% endif %}
  14. {{ macros.form_general_errors(form) }}
  15. {{ form_row(form.email) }}
  16. <div class="form-footer">
  17. <button type="submit" class="btn-green">Recover password</button>
  18. <a href="{{ path('app_login')}}" class="btn-clean-white">Go back to login</a>
  19. </div>
  20. <div class="create-account">
  21. <label for="remember-me">
  22. <input type="checkbox" id="remember-me" name="_remember_me">
  23. <span>Remember me</span>
  24. </label>
  25. <span>First time?</span>
  26. <a href="{{ path('app_registration_index')}}">Create an account</a>
  27. </div>
  28. </div>
  29. {{ form_end(form) }}
  30. </div>
  31. {% endblock %}