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

13 lines
385 B
Twig
Raw Normal View History

2019-10-08 16:17:06 +02:00
{% extends "pages/password/reset.twig" %}
{% import 'macros/base.twig' as m %}
{% block row_content %}
<div class="col-md-12">
{% if type == 'email' %}
2023-11-23 17:37:06 +01:00
{{ m.alert(__('password.recovery.success'), 'info') }}
2019-10-08 16:17:06 +02:00
{% elseif type == 'reset' %}
2023-11-23 17:37:06 +01:00
{{ m.alert(__('settings.password.success'), 'success') }}
2019-10-08 16:17:06 +02:00
{% endif %}
</div>
{% endblock %}