{% load i18n %} {% block title %}{% trans "Central Authentication Service" %}{% endblock title %} {% block extra_head %} {% endblock extra_head %} {% block body %}

{% block content_title %}{% trans "Central Authentication Service" %}{% endblock content_title %}

{% block content %} {% if messages %}
{% endif %} {% if form.errors %}
{% endif %}
{% csrf_token %} {% for field in form.hidden_fields %} {{ field }} {% endfor %}
{{ form.username.label_tag }}{{ form.username }}
{{ form.password.label_tag }}{{ form.password }}
{% if form.warn %}
{{ form.warn }}{{ form.warn.label_tag }}
{% endif %}
{% endblock content %}
{% endblock body %}