templates/security/receive_password.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Receive password{% endblock %}
  3. {% block body %}
  4.     <form method="post">
  5.         {% if email %}
  6.             <div class="alert alert-danger">Email {{ email }} not found!</div>
  7.         {% endif %}
  8.         <h1 class="h3 mb-3 font-weight-normal">Receive your password</h1>
  9.         <label for="inputEmail" class="sr-only">Email</label>
  10.         <input type="email" name="email" id="inputEmail" class="form-control" placeholder="Email" value="{{ email }}" required autofocus>
  11.         <button class="btn btn-lg btn-link">
  12.             <a href="{{ path('login') }}">Назад</a>
  13.         </button>
  14.         <button class="btn btn-lg btn-primary" type="submit">
  15.             Receive
  16.         </button>
  17.     </form>
  18. {% endblock %}