{% extends '@KobizoCore/backend/single-block.base.twig' %}
{% block title %}{% trans %}Reset Password{% endtrans %}{% endblock %}
{% block content %}
<div class="text-center w-75 m-auto">
<h4 class="text-dark-50 text-center mt-0 font-weight-bold">{% trans %}Reset Password{% endtrans %}</h4>
<p class="text-muted mb-4">{% trans %}Enter your email address and we'll send you an email with instructions to reset your password.{% endtrans %}</p>
</div>
{{ form_start(requestPasswordForm) }}
<div class="form-group mb-3">
<label for="emailaddress">{% trans %}Email address{% endtrans %}</label>
{{ form_widget(requestPasswordForm.email, {'attr': {'placeholder': 'Enter your email' | trans }}) }}
</div>
<input type="hidden" name="_csrf_token" value="{{ csrf_token('request_password') }}">
<div class="form-group mb-0 text-center">
<button class="btn btn-primary" type="submit">{% trans %}Reset Password{% endtrans %}</button>
</div>
{{ form_end(requestPasswordForm) }}
{% endblock %}
{% block bottom_content %}
<p class="text-muted">
{% trans %}Back to{% endtrans %} <a href="{{ path('app_login') }}" class="text-muted ml-1"><b>{% trans %}Log In{% endtrans %}</b></a>
</p>
{% endblock %}