2019-10-08 16:17:06 +02:00
|
|
|
{% extends 'layouts/app.twig' %}
|
|
|
|
{% import 'macros/base.twig' as m %}
|
|
|
|
{% import 'macros/form.twig' as f %}
|
|
|
|
|
|
|
|
{% block title %}{{ __('Password recovery') }}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="container">
|
|
|
|
<h1>{{ __('Password recovery') }}</h1>
|
|
|
|
|
2020-03-01 18:21:16 +01:00
|
|
|
{% include 'layouts/parts/messages.twig' %}
|
2019-10-08 16:17:06 +02:00
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
{% block row_content %}
|
|
|
|
<div class="col-md-8">
|
|
|
|
<form action="" enctype="multipart/form-data" method="post">
|
|
|
|
{{ csrf() }}
|
|
|
|
|
|
|
|
{{ __('We will send you an e-mail with a password recovery link. Please use the email address you used for registration.') }}
|
2019-11-28 02:08:18 +01:00
|
|
|
{{ f.input('email', __('E-Mail'), 'email', {'required': true}) }}
|
2019-10-08 16:17:06 +02:00
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
{{ f.submit(__('Recover')) }}
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|