{% extends "base-2col.html" %} {% load i18n %} {% block sectionid %}accounts{% endblock %} {% block title %}{% trans "Log in" %}{% endblock %} {% block billboard %}{% trans "Log in" %} {{ next }} {% endblock %} {% block content %}

{% trans "Login" %}

{% if form.errors %}

{% trans "Please correct the errors below" %}: {% if form.non_field_errors %}{{ form.non_field_errors }}{% endif %}

{% endif %}
{{ form.username.label_tag }}: {% if form.username.errors %} {{ form.username.errors|join:", " }}{% endif %}
{{ form.username|safe }}
{{ form.password.label_tag }}: {% if form.password.errors %} {{ form.password.errors|join:", " }}{% endif %}
{{ form.password|safe }}
{% endblock %} {% block aside %}

{% trans "If you don't have an account, you can" %} {% trans "sign up" %} {% trans "for one; it's free, and you'll be able to add content to this site" %}.

{% trans "Forgotten your password? Enter your e-mail address below, and we'll e-mail instructions for setting a new one" %}.



{% endblock %}