{% extends "base.html" %} {% load static %} {% load custom_tags_and_filters %} {% block content %}

Welcome to the {{ site_title }} website

{% csrf_token %}
{% button style="width: 100%;" type="save" value="Log in" icon="glyphicon-log-in" %}
If you don't have an account yet, create one first.
{% if user_name_or_password_incorrect %}
The username or password was not valid.
{% endif %} {% if login_banner %}
{{ login_banner|safe }}
{% endif %}
{% endblock %} {% block extra_whitespace %}{# Hide extra whitespace #}{% endblock %}