{% extends base_template %} {% load static %} {% block content %}

{{ title }}

{% if request.signon %}

Log in with an external account

{% endif %}

Log in with a Debusine account

{% if form.errors %}

Your username and password didn't match. Please try again.

{% endif %}
{% csrf_token %}
{{ form.username.label_tag }} {{ form.username }}
{{ form.password.label_tag }} {{ form.password }}

{% if next != logout_path %}{% endif %}
{% endblock %}