{% extends '@SymfonyAdmin/layout/auth/layout.html.twig' %}
{% block body %}
{% if not app.user %}
<div class="links-container">
<a href="{{ path('security_login') }}">Sign In</a>
</div>
{% endif %}
{% block before_form %}
<div class="title">Reset your password</div>
<p>Enter the email address you used when you joined and we'll send you instructions to reset your password.</p>
{% endblock %}
<form action="{{ path('resetting_send_email') }}" autocomplete="off" method="post">
<div class="form-group has-icon has-floating-label">
<i class="ledger-icons ledger-icon-messages"></i>
<input type="email" id="email" name="email" placeholder=" " class="form-control" autofocus />
<label for="email">Email</label>
</div>
<button type="submit" class="btn btn-primary btn-block btn-large mt-4">Send Reset Instructions</button>
</form>
{% block after_form %}{% endblock %}
{% endblock %}