Page not found (404)

Request Method: GET
Request URL: https://www.parentskills2go.org/accounts/password_reset/

Using the URLconf defined in mis_project.urls, Django tried these URL patterns, in this order:

  1. admin/
  2. accounts/ signup/ [name='account_signup']
  3. accounts/ login/ [name='account_login']
  4. accounts/ logout/ [name='account_logout']
  5. accounts/ password/change/ [name='account_change_password']
  6. accounts/ password/set/ [name='account_set_password']
  7. accounts/ inactive/ [name='account_inactive']
  8. accounts/ email/ [name='account_email']
  9. accounts/ confirm-email/ [name='account_email_verification_sent']
  10. accounts/ ^confirm-email/(?P<key>[-:\w]+)/$ [name='account_confirm_email']
  11. accounts/ password/reset/ [name='account_reset_password']
  12. accounts/ password/reset/done/ [name='account_reset_password_done']
  13. accounts/ ^password/reset/key/(?P<uidb36>[0-9A-Za-z]+)-(?P<key>.+)/$ [name='account_reset_password_from_key']
  14. accounts/ password/reset/key/done/ [name='account_reset_password_from_key_done']
  15. accounts/ social/
  16. accounts/ login/cancelled/ [name='socialaccount_login_cancelled']
  17. accounts/ login/error/ [name='socialaccount_login_error']
  18. accounts/ signup/ [name='socialaccount_signup']
  19. accounts/ connections/ [name='socialaccount_connections']
  20. tinymce/
  21. [name='home']
  22. contact-us/ [name='contact_us']
  23. set-cookie-preference/ [name='set_cookie_preference']
  24. ^media/(?P<path>.*)$
  25. mis_app/
  26. crm/
  27. finance/
  28. reporting/
  29. ^media/(?P<path>.*)$

The current path, accounts/password_reset/, didn’t match any of these.

You’re seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.