{% extends "account/base_entrance.html" %} {% comment %} SPDX-FileCopyrightText: 2022 Helmholtz-Zentrum Dresden-Rossendorf (HZDR) SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} {% load allauth account socialaccount widget_tweaks %} {% block head_title %} Sign In {% endblock head_title %} {% block content %} {% include "allauth/elements/heliport_heading.html" with text="Sign In" %} {% if LOCAL_ACCOUNT_SIGNUP %}

If you don't have an account, please sign up first.

{% endif %}

In case of questions, please contact us.


{% include "allauth/elements/heliport_form_errors.html" with errors=form.non_field_errors %} {% url 'account_login' as login_url %}
{% csrf_token %} {% for field in form %}
{% if field|field_type == "booleanfield" %} {{ field|add_class:"form-check-input" }} {% else %} {{ field|add_class:"form-control" }} {% endif %} {% if field|field_type == "passwordfield" and EMAIL_ENABLED %} {% endif %} {% include "allauth/elements/heliport_form_errors.html" with errors=field.errors %}
{% endfor %} {% include "allauth/elements/heliport_redirect_field.html" %}
{% if OIDC_ENABLED %}

Sign in using a third-party account:

{% include "allauth/elements/heliport_socialaccounts_list_form.html" with process="login" %} {% endif %} {% endblock content %}