{% extends 'eshop/@layout.html.twig' %}
{% block title %}
{{ 'security_reset_password'|trans({}, 'shop') }}
- {{ parent() }}
{% endblock %}
{% block description %}
{% if article.metaDescription %}
{{ article.metaDescription }}
{% endif %}
{% endblock %}
{% block system_main %}
{% if step == 'request' %}
{{ include('eshop/component/reset_password/request.html.twig') }}
{% endif %}
{% if step == 'check_email' %}
{{ include('eshop/component/reset_password/check_email.html.twig') }}
{% endif %}
{% if step == 'reset' %}
{{ include('eshop/component/reset_password/reset.html.twig') }}
{% endif %}
{% endblock %}