templates/reset_password/request-content.html.twig line 1

Open in your IDE?
  1. {% for flash_error in app.flashes('reset_password_error') %}
  2. <div class="alert alert-danger" role="alert">{{ flash_error }}</div>
  3. {% endfor %}
  4. {{ form_start(requestForm) }}
  5. {{ form_row(requestForm.username, { 'class': 'form-control' }) }}
  6. <div>
  7. <button class="btn btn-login btn-block">Reset password</button>
  8. </div>
  9. {{ form_end(requestForm) }}