{% extends "web/_base.html" %} {% load static %} {% block title %}Log in{% endblock %} {% block content %}

Log in

{% 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 %}