Page not found (404)

Request Method: GET
Request URL: http://www.aglaglobal.com/user/password

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

  1. [name='index']
  2. index [name='index']
  3. user/ login/ [name='login']
  4. user/ logout/ [name='logout']
  5. user/ password_change/ [name='password_change']
  6. user/ password_change/done/ [name='password_change_done']
  7. user/ password_reset/ [name='password_reset']
  8. user/ password_reset/done/ [name='password_reset_done']
  9. user/ reset/<uidb64>/<token>/ [name='password_reset_confirm']
  10. user/ reset/done/ [name='password_reset_complete']
  11. register/ [name='register']
  12. donate [name='donate']
  13. news [name='news']
  14. news-detail [name='news-detail']
  15. terms [name='terms']
  16. privacy [name='privacy']
  17. ^static/(?P<path>.*)$
  18. i18n/
  19. admin/
  20. ^media/(?P<path>.*)$

The current path, user/password, 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.