{% load i18n static simpletags %}
{% get_current_language as LANGUAGE_CODE %}{% get_current_language_bidi as LANGUAGE_BIDI %}
{% block title %}
{{ site_title }}-{% trans 'Log in' %}
{% endblock %}
{% block icon %}
{% endblock %}
{% if "SIMPLEUI_STATIC_OFFLINE"|get_config %}
{% else %}
{% endif %}
{% block css %}
{% endblock %}
{% block bg %}
{% endblock %}
{% block head %}
{# You can add code here. #}
{% endblock %}
{% block logo %}
{% if "SIMPLEUI_LOGO"|get_config %}
{% else %}
{% endif %}
{% endblock %}
{% block header %}
{{ site_header }}
{% endblock %}
{% block errors %}
{% if form.non_field_errors %}
{% for error in form.non_field_errors %}
{% endfor %}
{% endif %}
{% if form.errors and not form.non_field_errors %}