{% extends "account/base.html" %} {% load account %} {% load widget_tweaks %} {% block head_title %}"Password Reset"{% endblock %} {% block content %}

Password Reset

Enter your e-mail address below, and we'll send you an e-mail allowing you to reset it.

{% csrf_token %} {% for field in form.visible_fields %} {{ field|add_label_class:"font-semibold text-xs" }} {% render_field field class="flex items-center w-64 h-12 px-4 pb-3 mt-2 rounded focus:outline-none focus:ring-2" %} {% for error in field.errors %} {{ error }} {% endfor %} {% endfor %}
{% endblock %}