{% extends "adminlte/auth/auth-master.html" %} {% load i18n %} {# Demo-only login page: pre-fills the seeded credentials and explains how the demo is structured. The reusable, generic login template ships in the package at adminlte/auth/login.html — this one is specific to the public demo. #} {% block auth_body %}

{% trans 'Sign in to start your session' %}

{% if form.non_field_errors %} {% endif %}
{% csrf_token %} {% if next %}{% endif %}
{% for error in form.username.errors %}
{{ error }}
{% endfor %}
{% for error in form.password.errors %}
{{ error }}
{% endfor %}

After signing in, here's how the demo is laid out:

{% url 'password_reset' as password_reset_url %} {% if password_reset_url %}

{% trans 'I forgot my password' %}

{% endif %} {% url 'register' as register_url %} {% if register_url %}

{% trans 'Register a new membership' %}

{% endif %} {% endblock %}