{% extends 'base.html' %} {% block content %} {{ block.super }}

{% trans 'Welcome to the evaluation platform!' %}


{% trans 'HPI users' %}

{% if openid_active %}

{% trans 'Log in using HPI OpenID Connect.' %}

{% else %}

{% trans 'Log in using email and password.' %}

{% csrf_token %} {% for field in login_email_form %} {% include 'bootstrap_form_field.html' with field=field wide=True %} {% endfor %}
{% endif %}
{% csrf_token %}

{% trans 'External and D-School users' %}

{% trans 'Here you can request a one-time login URL. We will send it to your email address.' %}

{% include 'bootstrap_form_field.html' with field=new_key_form.email wide=True %}
{% endblock %} {% block modals %} {{ block.super }} {% endblock %}