{% extends "admin/base_site.html" %} {% load i18n static forge_icons %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block content %}
{% trans "Back to site" %}

{{ forge.brand_logo_text }}

{{ forge.brand_name }}

{{ forge.brand_tagline }}

{% blocktrans with site_name=forge.brand_name|default:site_header %}Welcome back to {{ site_name }}{% endblocktrans %}

{% if form.non_field_errors %}
{% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
{% elif form.errors %}
{% trans "Please correct the error below." %}
{% endif %}
{% csrf_token %}
{% if form.username.errors %}
{% for error in form.username.errors %}
{{ error }}
{% endfor %}
{% endif %}
{% if form.password.errors %}
{% for error in form.password.errors %}
{{ error }}
{% endfor %}
{% endif %}
{% url 'admin_password_reset' as password_reset_url %} {% if password_reset_url %} {% trans "Forgot your password?" %} {% else %} {% endif %} {% trans "Secure access" %}
{% endblock %}