From d6fd2ba46633a37ae0ede0ce0368fee6f8b0bc81 Mon Sep 17 00:00:00 2001 From: Lucas Schumacher Date: Fri, 28 Jun 2024 15:31:52 -0400 Subject: [PATCH] Add password reset link --- templates/home.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/templates/home.html b/templates/home.html index a8db859..0e194ca 100644 --- a/templates/home.html +++ b/templates/home.html @@ -5,6 +5,8 @@ {% block content %} {% if user.is_authenticated %} Hi {{ user.username }}! +
+Change Password
{% csrf_token %} @@ -14,5 +16,7 @@ Hi {{ user.username }}! Log In
Sign Up +
+Forgot Password {% endif %} {% endblock %}