{% extends "barest_base.html" %} {% load static %} {% load i18n %} {% load tailwind_forms %} {% block title %}Log in ยท {{ site_title }}{% endblock %} {% block content %}
{# the cyan background #}
{# the centered box #}
{# the logo #} Bugsink logo
{% if form.errors %} {% for error in form.non_field_errors %}
{{ error }}
{% endfor %} {% elif next %} {% if user.is_authenticated %}
{% translate "Your account doesn't have access to this page. To proceed, please login with an account that has access." %}
{% else %}
{% translate "Please login to see this page." %}
{% endif %} {% endif %}
{% csrf_token %} {% tailwind_formfield_implicit form.username %} {% tailwind_formfield_implicit form.password %}
{% endblock %}