{% extends "base" %} {% block page_title %}Login to Melodia{% endblock %} {% block navbar_title %}Login to Melodia{% endblock %} {# Disable navbar content other than the title #} {% block navbar_content %}{% endblock %} {# Similar to navbar, but remove entire sidebar #} {% block sidebar %}{% endblock %} {% block body %}
{% csrf_token %} {# We display the elements ourselves, since we don't want to render errors #}

{{ auth_form.username }}

{{ auth_form.password }}

{% if login_error %}
{{ login_error }}
{% endif %}
{% endblock %}