This commit is contained in:
Ross
2022-06-09 17:54:33 +01:00
parent 48e4e420c9
commit 8c10e2160a
5 changed files with 55 additions and 1 deletions
@@ -0,0 +1,14 @@
{% extends 'base.html' %}
{% block title %}Forgot Your Password?{% endblock %}
{% block content %}
<h1>Forgot your password?</h1>
<p>Enter your email address below, and we'll email instructions for setting a new one.</p>
<form method="POST">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Send me instructions!">
</form>
{% endblock %}