{% extends "adminlte_full/skeleton_login.html" %} {% load crispy_forms_tags i18n %} {% block page_title %}{% trans 'Login' %}{% endblock page_title %} {% block messages %} {% if adminlte_user.is_authenticated %}

You are authenticated as {{ adminlte_user.get_full_name }}, but are not authorized to access this page. Would you like to login to a different account?

{% else %}

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

{% endif %} {% endblock messages %} {% block page_content %} {% block form %}
{% block form_fields %} {% crispy form %} {% endblock form_fields %}
{% if config.ADMINLTE_REMEMBER_ME %}
{% endif %}
{% endblock form %} {% if config.ADMINLTE_ALLOW_SOCIAL_AUTH %} {% endif %} {% endblock page_content %} {% block custom_links %} {% if config.ADMINLTE_ALLOW_PASSWORD_RESET %}

{% trans 'Forgotten your password or username?' %}

{% endif %} {% if config.ADMINLTE_ALLOW_REGISTRATION %}

{% trans 'Register a new membership' %}

{% endif %} {% endblock custom_links %}