{% extends 'reset_password/reset_base.html.twig' %}
{% set title= "reset password"|trans %}
{% block reset_content %}
<div>
{{ form_start(requestForm) }}
<h2 class="h3 upper warning">{{ title }}</h2>
{% include "Admin/notice.html.twig" with {plainText:true, form: requestForm} %}
<div class="flex col top-10">
{{ form_label(requestForm.email) }}
{{ form_widget(requestForm.email) }}
</div>
<div>
<small>
{{ "Reset email notice"|trans }}
</small>
</div>
<div class="flex row middle top-30">
<button class='bg-success bold white noborder {{desktop('vt-15-in hz-20-in radius-5')}} {{mobile('vt-8-in hz-15-in radius-4')}}'
type='submit'>
{{ "Send password reset email"|trans }}
</button>
</div>
{{ form_end(requestForm) }}
</div>
{% endblock %}