{% extends "pretixcontrol/auth/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load compress %} {% load static %} {% block content %}
{% csrf_token %}

{% trans "Welcome back!" %}

{% if form.backend.url %} {% blocktrans trimmed with login_provider=form.backend.verbose_name %}We just want to make sure it's really you. Please re-authenticate with '{{ login_provider }}'.{% endblocktrans %} {% else %} {% trans "We just want to make sure it's really you. Please re-enter your password to continue." %} {% endif %}

{% bootstrap_form form %} {% if jsondata %}
{% trans "WebAuthn failed. Check that the correct authentication device is correctly plugged in." %}

{% trans "Alternatively, you can use your WebAuthn device." %}

{% endif %}
{% if form.backend.url %} {% trans "Continue" %} {% else %} {% endif %} {% trans "Log in as someone else" %}
{% if jsondata %} {% endif %} {% compress js %} {% endcompress %}
{% endblock %}