{% extends 'workflows/base_shell.html' %} {% load static i18n %} {% block title %}{% trans "Anmeldung" %}{% endblock %} {% block shell_header %} {% include 'workflows/includes/app_header.html' with header_show_lang=1 header_inside_shell=1 %} {% endblock %} {% block extra_css %} {% endblock %} {% block shell_body %}
{% if login_step == 'totp' %}

{% trans "Zwei-Faktor-Prüfung" %}

{% trans "Geben Sie Ihren TOTP-Code ein, um die Anmeldung abzuschließen." %}

{% if login_totp_user %} {% endif %} {% else %}

{% trans "Anmeldung" %}

{{ portal_login_subtitle }}

{% endif %}
{% csrf_token %} {% if next %} {% endif %} {% if form.errors %} {% endif %} {% if login_step == 'totp' %}
{{ form.otp_code.label_tag }}{{ form.otp_code }}
{% else %}
{{ form.username.label_tag }}{{ form.username }}
{{ form.password.label_tag }}{{ form.password }}
{% endif %}
{% endblock %}