1
0
Fork 0

Change password for logged in users

This commit is contained in:
Mouse Reeve 2020-10-02 14:42:42 -07:00
parent 9bc6d7d6b6
commit 2b681286f4
4 changed files with 69 additions and 10 deletions

View file

@ -85,6 +85,7 @@ urlpatterns = [
re_path(r'^user-register/?$', actions.register),
re_path(r'^reset-password-request/?$', actions.password_reset_request),
re_path(r'^reset-password/?$', actions.password_reset),
re_path(r'^change-password/?$', actions.password_change),
re_path(r'^edit_profile/?$', actions.edit_profile),