{% extends "base.html" %} {% load djblets_deco %} {% load djblets_utils %} {% load i18n %} {% block title %}{% trans "Log in" %}{% endblock %} {% block content %} {% ifequal siteconfig.settings.auth_backend "builtin" %} {% if siteconfig.settings.auth_enable_registration|default_if_none:1 %} {% url register as register_url %} {% box "important" %}

{% trans "New user?" %}

{% blocktrans %}If you don't yet have an account, you'll need to register one. It will only take a minute.{% endblocktrans %}

{% endbox %} {% endif %} {% else %} {% box "important" %}

{% trans "Log in with your standard username and password" %}

{% blocktrans %}There's no need to register a new account. Your standard username and password should work fine.{% endblocktrans %}

{% endbox %} {% endifequal %} {% box "loginform" %}

{% trans "Log In" %}

{% if error %} {% errorbox %} {{ error }} {% enderrorbox %} {% endif %}
 
{% endbox %} {% endblock %}