{% extends "material/frontend/base_site.html" %} {% load i18n material_form %} {% block title %}{% trans Login %} - {{ block.super }}{% endblock %} {% block page_title %}{% trans 'Authentication' %}{% endblock %} {% block content %} {% block left-panel %}
{% trans 'Log in' %}
{% csrf_token %} {% if 'username' in form.fields %} {% form %} {% part form.username prefix %}account_box{% endpart %} {% part form.password prefix %}lock{% endpart %} {% endform %} {% else %} {% form %}{% endform %} {% endif %} {% url 'admin_password_reset' as password_reset_url %} {% if password_reset_url %} {% endif %}
{% endblock left-panel %} {% block right-panel %}{% endblock right-panel %} {% endblock %}