{% extends "registration/registration_base.html" %} {% block page-title %}Log in - {{ block.super }}{% endblock %} {% block body-class %}{{ block.super }} static login{% endblock %} {% block content %}
{% if request.GET.activationcomplete %}
Successfully confirmed email! Log in below.
{% endif %} {% if form.errors %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% else %}
Please fix the errors below.
{% endif %} {% endif %}
Log in
{{ form.username }} {% if form.errors.username %} {% for error in form.errors.username %} {{ error }} {% endfor %} {% endif %}
{{ form.password }} {% if form.errors.password %} {% for error in form.errors.password %} {{ error }} {% endfor %} {% endif %}
{% csrf_token %}
{% endblock %} {% block analytics %} {% if not debug %} window.ll('tagScreen', 'Login view'); {% endif %} {% endblock %}