nmgfitness/users/templates/registration/password_reset_form.html

20 lines
326 B
HTML

{% extends 'base.html' %}
{% load bootstrap4 %}
{% block content %}
<div class="col-8">
<h2>Send password reset link</h2>
<form method="post">
{% csrf_token %}
{% bootstrap_form form %}
<p>
<input type="submit" value="Reset">
</p>
</form>
<a href="{% url 'index' %}">Back to Calendar</a>
</div>
{% endblock %}