engelsystem/resources/views/pages/password/reset.twig

32 lines
971 B
Twig
Raw Normal View History

2019-10-08 16:17:06 +02:00
{% extends 'layouts/app.twig' %}
{% import 'macros/base.twig' as m %}
{% import 'macros/form.twig' as f %}
2023-11-23 17:37:06 +01:00
{% block title %}{{ __('password.reset.title') }}{% endblock %}
2019-10-08 16:17:06 +02:00
{% block content %}
<div class="container">
2023-11-23 17:37:06 +01:00
<h1>{{ __('password.reset.title') }}</h1>
2019-10-08 16:17:06 +02: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() }}
2023-11-23 17:37:06 +01:00
{{ __('password.recovery.text') }}
2023-10-03 21:34:03 +02:00
{{ f.input('email', __('general.email'), {
'type': 'email',
'required': true,
}) }}
2019-10-08 16:17:06 +02:00
2023-11-23 17:37:06 +01:00
{{ f.submit(__('form.recover')) }}
2019-10-08 16:17:06 +02:00
</form>
</div>
{% endblock %}
</div>
</div>
{% endblock %}