Page not found (404)

Request Method: GET
Request URL: http://zipscripts.app/signup/contact

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

  1. healthcheck$
  2. user/api/v1/
  3. order/api/v1/
  4. common/api/v1/
  5. landing/api/v1/
  6. ^$ [name='home']
  7. ^privacy-policy$ [name='privacy']
  8. ^terms$ [name='terms']
  9. ^prescription/(?P<order_code>[A-Za-z0-9_-]+)$ [name='prescription_detail']
  10. ^pricing$ [name='pricing']
  11. ^success$ [name='success']
  12. ^cancel$ [name='cancel']
  13. ^contact$ [name='cancel']
  14. ^home$ [name='home']
  15. ^thankyou$ [name='thankyou']
  16. ^faq$ [name='faq']
  17. web/
  18. signup/ [name='web_signup']
  19. login/ [name='web_login']
  20. logout/ [name='web_logout']
  21. recover_password/ [name='forget-password']
  22. reset_password/<uidb64>/<token>/ [name='password_reset_confirm']
  23. send-otp/ [name='send_otp']
  24. email-verification/ [name='email_verification']
  25. billing/<plan> [name='sub_billing']

The current path, signup/contact, 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.