summaryrefslogtreecommitdiffstats
path: root/templates/auth/reset.html
diff options
context:
space:
mode:
authorAndrew Godwin2022-11-17 19:36:25 -0700
committerAndrew Godwin2022-11-17 19:36:25 -0700
commitadf2449d373bcd07e2b0ce557beeb1f49d1894e4 (patch)
treef9178fded8a38d02546b098ebb71b3797eb18964 /templates/auth/reset.html
parent6adfdbabe0d44c17f32abc9d48a6e252e2a0792e (diff)
downloadtakahe-adf2449d373bcd07e2b0ce557beeb1f49d1894e4.tar.gz
takahe-adf2449d373bcd07e2b0ce557beeb1f49d1894e4.tar.bz2
takahe-adf2449d373bcd07e2b0ce557beeb1f49d1894e4.zip
Add the user settings page too
Diffstat (limited to 'templates/auth/reset.html')
-rw-r--r--templates/auth/reset.html20
1 files changed, 0 insertions, 20 deletions
diff --git a/templates/auth/reset.html b/templates/auth/reset.html
deleted file mode 100644
index 42eced9..0000000
--- a/templates/auth/reset.html
+++ /dev/null
@@ -1,20 +0,0 @@
-{% extends "base.html" %}
-
-{% block title %}Reset Password{% endblock %}
-
-{% block content %}
- <form action="." method="POST">
- {% csrf_token %}
- <fieldset>
- <legend>Reset Password</legend>
- <p>You are resetting your password for {{ reset.user.email }}.</p>
- <p>Please choose your new password below.</p>
- {% for field in form %}
- {% include "forms/_field.html" %}
- {% endfor %}
- </fieldset>
- <div class="buttons">
- <button>Reset</button>
- </div>
- </form>
-{% endblock %}