I Always got this error while trying for getting a new password :
Reverse for ‘password_reset_confirm’ not found. ‘password_reset_confirm’ is not a valid view function or pattern name.
It’s hard to tell for sure because you’ve given so little information to go on…
But if I was to make a guess, it sounds like something is trying to use a named URL pattern that doesn’t exist or is maybe spelt differently.
Read: URL dispatcher | Django documentation | Django
Are you overriding the authentication views?
Search your codebase for where password_reset_confirm
is being referenced for a hint.
thanks for your response i have solve this error two days ago but i forget to close the article.
The error was in 2 different areas, first i should have to create the .html file and subject.txt also.
second was that the dj-rest-auth should be “” need to add password_reset_confirm url into your urls.py
(at the top of any other included urls) “” as in FAQ in the docs.
thanks again