{% extends 'frontend/base.html.twig' %}{% form_theme requestForm 'bootstrap_4_horizontal_layout.html.twig' %}{% block pageTitle %}Passwort ändern{% endblock %}{% block pageDescription %}{% endblock %}{% block contentArea %}<style>/*Blendet die Symfony Form Validation Error komplett aus, da nicht schoen formatiert!*/.invalid-feedback {display: none !important;}</style><div class="abo"><div class="row"><div class="col-lg-8 col-12 mb-lg-0 mb-5"><h1>Passwort ändern</h1>{% for flashError in app.flashes('reset_password_error') %}<div class="form-error-box mb-4"><b>Hinweis:</b><br>{{ flashError }}</div>{% endfor %}{{ form_start(requestForm, {'attr':{'class':'jqLoginForm', 'novalidate':'novalidate'}}) }}{% if not requestForm.vars.valid %}<div class="form-error-box mb-4"><b>Hinweis:</b><br>{# Loop through every form item #}{% for child in requestForm.children %}{# Display the errors of the form item #}{%for error in child.vars.errors%}{{error.message}}{%endfor%}{%endfor%}</div>{% endif %}{{ form_row(requestForm.username) }}<div><small>Geben Sie Ihre E-Mail-Adresse ein und wir senden Ihnen einen Link, um Ihr Passwort zurückzusetzen.</small></div><button class="btn btn-primary">E-Mail zum Ändern des Passworts senden</button>{{ form_end(requestForm) }}</div><div class="col-lg-4 col-12">{{ include('frontend/_partials/_right_col_full.html.twig') }}</div></div></div>{% endblock %}{% block onPageScriptsArea %}<script>$( document ).ready(function() {// focus on username$('.jqLoginForm').find('input[type=email]').focus();});</script>{% endblock %}