hi I have problem with authentication view

when I wanted to use ready django authentication view for example I used reset password and the url come(it’s showen in the image)
(https://s8.uupload.ir/files/screenshot_(386)_cszn.png)

but the problem is when I wanted to click Reset Password(as you see in image I highlighted with yellow color)it says “ConnectionRefusedError at /accounts/password_reset/”
(https://s8.uupload.ir/files/screenshot_(385)_sk8t.png)

here is my account’s url:

from django.urls import path
from . import views
from django.contrib.auth import views as auth_views
app_name=‘accounts’
urlpatterns = [
path(‘login’, views.login_view, name=‘login’),
path(‘logout’, views.logout_view, name=‘logout’),
path(‘signup’, views.signup_view, name=‘signup’),
path(‘accounts/password_reset/’, auth_views.PasswordResetView.as_view(), name=‘password_reset’),
path(‘accounts/password_reset/done/’, auth_views.PasswordResetDoneView.as_view(), name=‘password_reset_done’),
path(‘accounts/reset///’, auth_views.PasswordResetConfirmView.as_view(), name=‘password_reset_confirm’),
path(‘accounts/reset/done/’, auth_views.PasswordResetCompleteView.as_view(), name=‘password_reset_complete’),
]

and here is my directory files because I wanted to use ready view for reset password I didn’t make any templates for them do I have to?
Screenshot (387)

First, it’s a lot more helpful to see the server log than the display from the browser. But even without that, there are a couple possibilities that I can see.

First, have you verified that your server can successfully send emails? That would be the first thing I’d want to check.

The second is that I can see that you’re trying to use Django 3.2 with Python 3.11. That is not a supported combination. See Django 3.2 release notes | Django documentation | Django.