Page not found (404)

Request Method: GET
Request URL: https://shoppergreen.com/register/forgot-password.html

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

  1. admin/
  2. [name='home_view']
  3. country/<str:host> [name='country_view']
  4. login/ [name='login_view']
  5. logout/ [name='logout']
  6. register/ [name='user_register_view']
  7. changepassword/ [name='changepassword']
  8. search/ [name='Search_view']
  9. trackorders/ [name='trackorder_view']
  10. deals/ [name='deals_view']
  11. top-products/ [name='top_products_view']
  12. latest-products/ [name='latest_products_view']
  13. stores/ [name='all_stores_view']
  14. contact/ [name='contact_us_view']
  15. privacy/ [name='privacy_view']
  16. tor/ [name='tor_view']
  17. about_us/ [name='about_us_view']
  18. remove_cart/<slug:slug_text> [name='remove_cart_view']
  19. cart/change/<slug:slug_text> [name='edit_cart_view']
  20. ajax/editcart [name='editcart_view']
  21. shoppergreen-api/v1/
  22. cart/ [name='checkout_view']
  23. checkout/payment/<int:id> [name='payment_view']
  24. webhooks/stripe [name='stripe-webhook']
  25. create-payment-intent/<id>/ [name='create-payment-intent']
  26. create-checkout-session/<id>/ [name='create-checkout-session']
  27. shop/
  28. delivery/
  29. administration/
  30. store/
  31. user/<slug:user_name> [name='user_profile_view']
  32. user/<slug:name>/edit [name='update_profile']
  33. departments [name='all_department_view']
  34. departments/<slug:slug> [name='department_view']
  35. subscription/ [name='subscription_view']
  36. reset-password/ [name='reset_password']
  37. reset_password_sent/ [name='password_reset_done']
  38. reset/<uidb64>/<token>/ [name='password_reset_confirm']
  39. reset_password_complete/ [name='password_reset_complete']
  40. ajax/load-states [name='ajax_load_states']
  41. ajax/load-cities [name='ajax_load_cities']
  42. ajax/load-suburbs [name='ajax_load_suburb']
  43. ajax/add_to_cart/<slug:item_name> [name='add_to_cart_view']
  44. ajax/getStore/ [name='getStore']
  45. ajax/get_notifications/<int:id> [name='get_notification_view']
  46. ajax/getstorebyitemcagetory [name='getstorebyitemcagetory_view']

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