{% extends 'paxalia/auth_base.html' %} {% load i18n %} {% block title %}{% if admin_flow %}{% trans "Paxalia Dashboard Admin Login" %}{% else %}{% trans "Log in" %}{% endif %} · {{ brand_name }}{% endblock %} {% block description %}{% trans "Secure authentication for Paxalia Dashboard." %}{% endblock %} {% block content %} {% if admin_flow %} {% trans "Paxalia Security" %} {% trans "Administrator sign in" %} {% trans "Administrator access continues through mandatory 2FA and an authorized device." %} {% else %} {% trans "Log in" %} {% trans "Sign in with your Django account to continue." %} {% endif %} {% csrf_token %} {% if form.non_field_errors %}{{ form.non_field_errors }}{% endif %} {% trans "Username or email" %} {{ form.username }} {% for error in form.username.errors %}{{ error }}{% endfor %} {% trans "Password" %} {{ form.password }} {% trans "Show" %} {% for error in form.password.errors %}{{ error }}{% endfor %} {% if rate_limited %} {% trans "Too many authentication attempts. Please wait and try again." %} {% endif %} {% if admin_flow %}{% trans "Continue securely" %}{% else %}{% trans "Log in" %}{% endif %} {% if auth_password_reset_enabled %}{% trans "Forgot password?" %}{% endif %} {% if auth_password_reset_enabled and auth_signup_enabled %}·{% endif %} {% if auth_signup_enabled %}{% trans "Create account" %}{% endif %} {% endblock %}
{% trans "Paxalia Security" %}
{% trans "Administrator access continues through mandatory 2FA and an authorized device." %}
{% trans "Sign in with your Django account to continue." %}