{% extends "pages/base.html" %} {% load i18n %} {% block title %}{% trans "Login" %}{% endblock %} {% block content %}

{% trans "Login" %}

{% if request.user.is_authenticated %} {% endif %} {% if restricted_notice %} {% endif %}
{% csrf_token %} {% if login_check_mode %} {% endif %} {% if form.non_field_errors %} {% endif %}
{% for error in form.username.errors %}
{{ error }}
{% endfor %}
{% for error in form.password.errors %}
{{ error }}
{% endfor %}
{% if next %}{% endif %}
{% if show_rfid_login %} {% endif %} {% if can_request_invite %} {% endif %}
{% endblock %}