{% extends "registration/base.html" %} {% load i18n %} {% block title %}{% trans "Log in" %}{{ block.super }}{% endblock %} {% block register_active %}{% endblock register_active %} {% block login_active %}active{% endblock login_active %} {% block headcss %} {% endblock headcss %} {% block content %}

{% trans "Log in" %}

{% trans "Please note that this is the central server; you cannot log in here using your local server's account information." %}

{# Translators please make sure to keep the link tag and text in-tact #} {% blocktrans %}If you do not have an account on the central server, you can sign up here.{% endblocktrans %}

{% if form.errors %} {% if debug %}

Debug-only info: {{ form.non_field_errors }}

{% endif %} {% if "inactive" in form.non_field_errors.0 %}

{% trans "This account has not been activated." %}

{% else %}

{% trans "Incorrect user name or password." %}

{% endif %} {% endif %}
{% csrf_token %}

{% blocktrans %}If you've forgotten your password, you can reset it here.{% endblocktrans %}

{% endblock content %}