[FIX] EMPLOYEE: Fixed employee reset password redirect

This commit is contained in:
Horilla
2024-07-12 12:31:05 +05:30
parent 08631a68b8
commit 27d8f6b398
2 changed files with 55 additions and 2 deletions

View File

@@ -83,6 +83,11 @@ urlpatterns = [
views.HorillaPasswordResetView.as_view(),
name="forgot-password",
),
path(
"employee-reset-password",
views.EmployeePasswordResetView.as_view(),
name="employee-reset-password",
),
path("reset-send-success", views.reset_send_success, name="reset-send-success"),
path("change-password", views.change_password, name="change-password"),
path("logout", views.logout_user, name="logout"),