{% extends "registration/base.html" %} {% block title %}Log in{% endblock %} {% block content %}
Log in {% if form.non_field_errors %} {{ form.non_field_errors.as_ul }} {% endif %}
  1. {{ form.username }} {% if form.username.errors %} {{ form.username.errors.as_text }} {% endif %}
  2. {{ form.password }} {% if form.password.errors %} {{ form.password.errors.as_text }} {% endif %}

You don't have an account? Get one!.

Or you've forgotten you password? Reset it!.

{% endblock %}