diff --git a/osinaweb/osinacore/__pycache__/urls.cpython-310.pyc b/osinaweb/osinacore/__pycache__/urls.cpython-310.pyc index 1a7d79e0..b9f2d71f 100644 Binary files a/osinaweb/osinacore/__pycache__/urls.cpython-310.pyc and b/osinaweb/osinacore/__pycache__/urls.cpython-310.pyc differ diff --git a/osinaweb/osinacore/templates/email_templates/forgot_password_email.html b/osinaweb/osinacore/templates/email_templates/forgot_password_email.html index e7ceb25f..d611cf83 100644 --- a/osinaweb/osinacore/templates/email_templates/forgot_password_email.html +++ b/osinaweb/osinacore/templates/email_templates/forgot_password_email.html @@ -46,7 +46,7 @@

Reset your account password at Ositcom

Hello {{ user.first_name }},

You recently requested to reset your password for your account. Click the button below to reset it.

-

>Reset Password

+

Reset Password

If you did not request a password reset, please ignore this email. Your account is safe, don't worry.

Regards,
The Ositcom Team

diff --git a/osinaweb/osinacore/urls.py b/osinaweb/osinacore/urls.py index 99f3dd78..295d6949 100644 --- a/osinaweb/osinacore/urls.py +++ b/osinaweb/osinacore/urls.py @@ -28,7 +28,7 @@ urlpatterns = [ path('activate///', views.activate, name='activate'), path('confirmation-sent/', views.confirmation_sent, name='activation_sent'), path('forgot-password/', views.forgot_password, name='forgot-password'), - path('reset-password///', views.forgot_password, name='forgot-password'), + path('reset-password///', views.reset_password, name='forgot-password'), path('go_online/', views.go_online, name='go_online'),