django email PasswordResetView template path

path('reset/', PasswordResetView.as_view( template_name='registration/password_reset.html' ), name='password_reset') This code maps the URL 'reset/' to the PasswordResetView of Django, using the specified template 'registration/password_reset.html' and assigns it the name 'password_reset'.