pkmntrade.club/templates/account/password_reset.html
2025-02-26 00:17:06 -08:00

13 lines
388 B
HTML

{% extends '_base.html' %}
{% load crispy_forms_tags %}
{% block title %}Password Reset{% endblock %}
{% block content %}
<h2>Forgot your password? </h2>
<form method="POST" action="{% url 'account_reset_password' %}" class="password_reset">
{% csrf_token %}
{{ form | crispy }}
<button class="btn btn-primary" type="submit">Reset Password</button>
</form>
{% endblock content %}