Page not found (404)

Request Method: GET
Request URL: https://www.photoforid.com/accounts/login/index.html

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

  1. admin/
  2. accounts/login/ [name='login']
  3. accounts/logout/ [name='logout']
  4. validate-user/ [name='validate_user']
  5. [name='home']
  6. payment/ [name='payment']
  7. refund-policy/ [name='refund_policy']
  8. pricing/ [name='pricing']
  9. gdpr-compliance/ [name='gdpr']
  10. about-us/ [name='about_us']
  11. support/ [name='support_page']
  12. privacy-policy/ [name='privacy_policy']
  13. terms-conditions/ [name='terms']
  14. download/<uuid:new_image>/<str:title>/ [name='download_page']
  15. payment/<int:old_pic>/<int:new_pic>/ [name='payment_for_single_subs']
  16. document/<slug:slug>/ [name='document_type']
  17. get-types/ [name='get_photo_types']
  18. signup-and-pay [name='signup_and_pay']
  19. cms/
  20. customer/
  21. ckeditor/
  22. ^serviceworker.js$
  23. ^manifest.json$
  24. reset_password/ [name='reset_password']
  25. reset_password_sent/ [name='password_reset_done']
  26. reset/<uidb64>/<token> [name='password_reset_confirm']
  27. reset_password_complete/ [name='password_reset_complete']
  28. .well-known/assetlinks.json
  29. ads.txt
  30. ^static/(?P<path>.*)$
  31. ^media/(?P<path>.*)$

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