vendor/excelwebzone/symfony-admin-bundle/src/Resources/views/resetting/request.html.twig line 1

Open in your IDE?
  1. {% extends '@SymfonyAdmin/layout/auth/layout.html.twig' %}
  2. {% block body %}
  3.   {% if not app.user %}
  4.     <div class="links-container">
  5.       <a href="{{ path('security_login') }}">Sign In</a>
  6.     </div>
  7.   {% endif %}
  8.   {% block before_form %}
  9.     <div class="title">Reset your password</div>
  10.     <p>Enter the email address you used when you joined and we'll send you instructions to reset your password.</p>
  11.   {% endblock %}
  12.   <form action="{{ path('resetting_send_email') }}" autocomplete="off" method="post">
  13.     <div class="form-group has-icon has-floating-label">
  14.       <i class="ledger-icons ledger-icon-messages"></i>
  15.       <input type="email" id="email" name="email" placeholder=" " class="form-control" autofocus />
  16.       <label for="email">Email</label>
  17.     </div>
  18.     <button type="submit" class="btn btn-primary btn-block btn-large mt-4">Send Reset Instructions</button>
  19.   </form>
  20.   {% block after_form %}{% endblock %}
  21. {% endblock %}