{% load i18n %} {% trans "Log in" %} | Administration {% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}

{% trans "Administration" %}

{% trans "Sign in with Microsoft" %} {% trans "Use a different account" %}
{% trans "or" %}
{% if form.errors %}
{% if form.non_field_errors %} {% for error in form.non_field_errors %}{{ error }}{% endfor %} {% else %} {% blocktranslate count counter=form.errors.items|length %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktranslate %} {% endif %}
{% endif %}
{% csrf_token %}
{{ form.username }}
{{ form.password }}