- {% extends "Layout/default.html.twig" %}
- {% block navigation %}
-     {{ include('Press/Includes/pressHeader.html.twig') }}
- {% endblock %}
- {% block content %}
-     {{ include('Navigation/breadcrumb.html.twig') }}
-     {{ include('Includes/main-title-block-splitted.html.twig', {
-         headline: 'Passwort vergessen',
-     }) }}
-     <div class="slide bg-dark-bg content-block">
-         <div class="container container-narrow">
-             {% if success|default('') %}
-                 <div class="alert-success p-2">
-                     {% if success == 'mail sent' %}
-                         {{ 'reset-pw.Mail gesendet'|trans }}
-                     {% endif %}
-                 </div>
-             {% endif %}
-             {% if errors|default([]) %}
-                 <div class="alert-danger p-2">
-                     <ul>
-                         {% for error in errors %}
-                             <li>{{ ('reset-pw.' ~ error)|trans }}</li>
-                         {% endfor %}
-                     </ul>
-                 </div>
-             {% endif %}
-             {% if step == 1 %}
-                 {{ include('Press/Includes/reset-pw/enter-email-form.html.twig') }}
-             {% elseif step == 2 %}
-                 {{ include('Press/Includes/reset-pw/enter-pw-form.html.twig') }}
-             {% elseif step == 3 %}
-                 {{ include('Press/Includes/reset-pw/pw-reset-done.html.twig') }}
-             {% endif %}
-         </div>
-     </div>
- {% endblock %}
- {% block javascripts %}
-     {% if not app.request.get('onlyInlineCss') %}
-         {{ include('Layout/includes/encore.html.twig', {
-              'staticDebugMode': staticDebugMode,
-              'file': 'js/press'
-         }) }}
-     {% endif %}
- {% endblock %}