{% extends 'base.html' %} {% load widget_tweaks %} {% block title %}login{% endblock title %} {% block content %} {% if messages %} {% for message in messages %} {% if 'error' in message.tags %} {% include 'components/alert.html' with is_info=False title="Error" body=message %} {% endif %} {% endfor %} {% endif %}
{% csrf_token %} {% for field in form %}
{% render_field field class="bg-slate-100 dark:bg-slate-300 text-slate-800 rounded-lg p-3 drop-shadow-xl w-full" %}
{% endfor %}
{% endblock content %}