{% extends "base.html" %} {% block dojango_content %}
{% if form.errors %}

{% trans "Your username and password didn't match. Please try again." %}

{% endif %} {% if user.is_authenticated %}

{% blocktrans with user.username as username %}Welcome, {{ username }}. Thanks for logging in.{% endblocktrans %}

{% else %}
{% csrf_token %} {% if reset_password %}

{% trans "The web admin user has been removed in this release in order to unify the web and Unix authentication mechanisms." %}

{% trans "Administrators should log in to the web UI as root, since the web UI already confers superuser privileges in many areas." %}

{% trans "For security reasons, you must now set a new root password:" %}

{% endif %} {{ form }}
{% endif %}
{% endblock %}