{% extends "registration/base.html" %} {% load i18n dashub %} {% get_dashub_settings request as dashub_settings %} {% block content %}
{% csrf_token %} {% if user.is_authenticated %}

{% blocktrans trimmed %} You are authenticated as {{ username }}, but are not authorized to access this page. Would you like to login to a different account? {% endblocktrans %}

{% endif %} {% if form.errors %} {% if form.username.errors %}

{{ form.username.label }}: {{ form.username.errors|join:', ' }}

{% endif %} {% if form.password.errors %}

{{ form.password.label }}: {{ form.password.errors|join:', ' }}

{% endif %} {% if form.non_field_errors %}
{% for error in form.non_field_errors %}

{{ error }}

{% endfor %}
{% endif %} {% endif %}

Sign in to account

Enter your email & password to login

{% endblock %}