Page not found (404)

Request Method: GET
Request URL: https://cityikon.com/accounts/forgot_password/offer

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

  1. ^ ^$ [name='catalog_index']
  2. ^ ^shop/$ [name='catalog_all']
  3. ^ ^categories/(?P<slug>[\w-]+)/$ [name='catalog_category']
  4. ^ ^categories/(?P<slug>[\w-]+)/(?P<page_num>\d+)/$ [name='catalog_category']
  5. ^ ^manufacturers/(?P<slug>[\w-]+)/$ [name='catalog_manufacturer']
  6. ^ ^manufacturers/(?P<slug>[\w-]+)/(?P<page_num>\d+)/$ [name='catalog_manufacturer']
  7. ^ ^search/$ [name='catalog_search']
  8. ^ ^search/(?P<page_num>\d+)/$ [name='catalog_search']
  9. ^ ^products/(?P<product_id>\d+)/(?P<slug>[\w-]+)/$ [name='catalog_product']
  10. ^ ^change_currency/$ [name='catalog_change_currency']
  11. ^ ^(?P<product_slug>[\w-]*)_(?P<product_pk>\d+)/reviews/
  12. ^ ^ajax/search/$ [name='services_search_ajax']
  13. ^ ^ajax/get-variant-attr/$ [name='get_variants_attrs']
  14. ^ ^ajax/get-variant/$ [name='get_variant']
  15. ^accounts/ ^login/$ [name='accounts_login']
  16. ^accounts/ ^logout/$ [name='accounts_logout']
  17. ^accounts/ ^register/$ [name='accounts_register']
  18. ^accounts/ ^forgot_password/$ [name='accounts_forgot_password']
  19. ^accounts/ ^change_password/$ [name='accounts_change_password']
  20. ^accounts/ ^password_reset/(?P<user_id>\d+)-(?P<reset_code>\w+)/$ [name='accounts_password_reset']
  21. ^accounts/ profile/ [name='profile-view']
  22. ^accounts/ profile/edit/ [name='profile-update']
  23. ^accounts/ addresses/ [name='address-list']
  24. ^accounts/ addresses/add/ [name='address-create']
  25. ^accounts/ addresses/<int:pk>/ [name='address-detail']
  26. ^accounts/ addresses/<int:pk>/delete/ [name='address-delete']
  27. ^sales/
  28. ^payments/
  29. ^pages/
  30. contact/ [name='contact']
  31. faq/ [name='faq']
  32. thanks/
  33. admin/
  34. repair/servicing/
  35. notification/
  36. dashboard/
  37. dashboard/repair/
  38. ckeditor/
  39. ^paypal/
  40. ^ckeditor/
  41. captcha/
  42. ^static/(?P<path>.*)$
  43. ^public/media/(?P<path>.*)$

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