{% extends "adminlte_full/skeleton_login.html" %} {% import "adminlte_full/macros/bootstrap4.html" as bootstrap %} {% block page_title %}{{ adminlte.gettext('Login') }}{% endblock %} {% 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 %}

{{ adminlte.gettext('Sign in to start your session') }}

{% endif %} {% endblock messages %} {% block page_content %} {% block form %}
{% block form_fields %} {{ bootstrap.form_fields(form, form_group_class='input-group mb-3', show_label=false, placeholder=true, exclude=['remember_me']) }} {% 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 %}

{{ adminlte.gettext('Forgotten your password or username?') }}

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

{{ adminlte.gettext('Register a new membership') }}

{% endif %} {% endblock %}