Page not found (404)

Request Method: GET
Request URL: https://sayhichat.com/login-2

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

  1. admin/
  2. [name='index']
  3. terms-and-conditions-and-privacy-policy [name='privacy']
  4. incoming-calls [name='incoming_calls']
  5. contact-us [name='contact']
  6. member-area [name='member_area']
  7. member-plans [name='membership_plans']
  8. signup [name='signup']
  9. user-login [name='login']
  10. checkout [name='checkout']
  11. make-payment [name='make_payment']
  12. stripe-payment [name='stripe_payment']
  13. logout [name='logout_view']
  14. make-call [name='make_call']
  15. your-gift [name='your_gift']
  16. proof_upload [name='proof_upload']
  17. [name='home']
  18. create/ [name='create']
  19. detail/<id>/ [name='detail']
  20. payment-status/ [name='payment_status']
  21. order-status/ [name='order_status']
  22. failed/ [name='failed']
  23. history/ [name='history']
  24. api/checkout-session/<id>/ [name='api_checkout_session']
  25. api/create-payment-intent/<id>/ [name='create-payment-intent']
  26. accounts/
  27. tinymce/
  28. ^media/(?P<path>.*)$

The current path, login-2, 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.