Page not found (404)

Request Method: GET
Request URL: https://www.impact-tourism.net/accounts/login

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

  1. api/
  2. user/
  3. back/
  4. admin/
  5. accounts/register/ [name='django_registration_register']
  6. accounts/profile/
  7. accounts/ activate/complete/ [name='django_registration_activation_complete']
  8. accounts/ activate/<str:activation_key>/ [name='django_registration_activate']
  9. accounts/ register/ [name='django_registration_register']
  10. accounts/ register/complete/ [name='django_registration_complete']
  11. accounts/ register/closed/ [name='django_registration_disallowed']
  12. accounts/ login/ [name='login']
  13. accounts/ logout/ [name='logout']
  14. accounts/ password_change/ [name='password_change']
  15. accounts/ password_change/done/ [name='password_change_done']
  16. accounts/ password_reset/ [name='password_reset']
  17. accounts/ password_reset/done/ [name='password_reset_done']
  18. accounts/ reset/<uidb64>/<token>/ [name='password_reset_confirm']
  19. accounts/ reset/done/ [name='password_reset_complete']
  20. social_login
  21. experiences
  22. experience/<str:product_id>
  23. book/<int:product_id>
  24. signup
  25. login
  26. help
  27. help/<int:articleid>/<str:slug>
  28. manual/<str:category_id>
  29. article/<int:articleid>/<str:slug>
  30. ckeditor/
  31. page/pledge
  32. app/.*
  33. ^swagger(?P<format>\.json|\.yaml)$ [name='schema-json']
  34. ^swagger/$ [name='schema-swagger-ui']
  35. ^redoc/$ [name='schema-redoc']
  36. ^media/(?P<path>.*)$
  37. ^public/(?P<path>.*)$

The current path, accounts/login, 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.