{% extends "admin/base_site.html" %} {% load i18n static %} {% block extrastyle %}{{ block.super }} {% endblock %} {% block bodyclass %}{{ block.super }} login{% endblock %} {% block usertools %}{% endblock %} {% block nav-global %}{% endblock %} {% block content_title %}{% endblock %} {% block sidebar %}{% endblock %} {% block content %}
{% trans "Sign in with Microsoft" %}
{% 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.errors }} {{ form.username }}
{{ form.password.errors }} {{ form.password }}
{% endblock %}