{% extends 'layout.html' %} {% block content %}

Log in

{% if login_form.non_field_errors %}

{{ login_form.non_field_errors }}

{% endif %}
{% csrf_token %}
{{ login_form.localname }}
{{ login_form.password }}
{% for error in login_form.password.errors %}

{{ error | escape }}

{% endfor %}
{% if site.allow_registration %}

Create an Account

{% include 'snippets/register_form.html' %}
{% else %}

This instance is closed

Contact an administrator to get an invite

{% endif %}
{% include 'snippets/about.html' %}

More about this site

{% endblock %}