vendor/kobizo/core-bundle/src/Resources/views/frontend/request-password.twig line 1

Open in your IDE?
  1. {% extends '@KobizoCore/backend/single-block.base.twig' %}
  2. {% block title %}{% trans %}Reset Password{% endtrans %}{% endblock %}
  3. {% block content %}
  4.     <div class="text-center w-75 m-auto">
  5.         <h4 class="text-dark-50 text-center mt-0 font-weight-bold">{% trans %}Reset Password{% endtrans %}</h4>
  6.         <p class="text-muted mb-4">{% trans %}Enter your email address and we'll send you an email with instructions to reset your password.{% endtrans %}</p>
  7.     </div>
  8.     {{ form_start(requestPasswordForm) }}
  9.     <div class="form-group mb-3">
  10.         <label for="emailaddress">{% trans %}Email address{% endtrans %}</label>
  11.         {{ form_widget(requestPasswordForm.email, {'attr': {'placeholder': 'Enter your email' | trans }}) }}
  12.     </div>
  13.     <input type="hidden" name="_csrf_token" value="{{ csrf_token('request_password') }}">
  14.     <div class="form-group mb-0 text-center">
  15.         <button class="btn btn-primary" type="submit">{% trans %}Reset Password{% endtrans %}</button>
  16.     </div>
  17.     {{ form_end(requestPasswordForm) }}
  18. {% endblock %}
  19. {% block bottom_content %}
  20.     <p class="text-muted">
  21.         {% trans %}Back to{% endtrans %} <a href="{{ path('app_login') }}" class="text-muted ml-1"><b>{% trans %}Log In{% endtrans %}</b></a>
  22.     </p>
  23. {% endblock %}