{% extends "base" %} {% block page_title %}Login to Melodia{% endblock %} {% block navbar_title %}Login to Melodia{% endblock %} {# Specifying a blank sidebar, rather than sidebar_content, allows us to remove the sidebar entirely. #} {% 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 auth_form.non_field_errors %}
{{ auth_form.non_field_errors }}
{% endif %}
{% endblock %}