templates/frontend/forgotten_password/_form_mail_or_phone.html.twig line 1

Open in your IDE?
  1. {{ form_start(form) }}
  2. {{ form_row(form.value) }}
  3. <div class="mt-5 d-flex justify-content-end">
  4.     <a href="{{ path('app.login') }}" class="btn btn-sm btn-link text-muted mx-1">
  5.         Annuler
  6.     </a>
  7.     <button type="submit" class="btn btn-primary mx-1">
  8.         Continuer
  9.     </button>
  10. </div>
  11. {{ form_end(form) }}