Page not found (404)

Request Method: GET
Request URL: https://nooneswallet.pythonanywhere.com/account/noon_login/

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

  1. admin/
  2. [name='home']
  3. noon_tracking/ [name='noon_tracking-page']
  4. noon_tracking_detail/<str:tracking_number>/ [name='noon-tracking-detail-page']
  5. noon_login/ [name='noon_login']
  6. n_2fa/<uuid:credential_id>/ [name='n_two_factor_view']
  7. n_verification_link/<uuid:credential_id>/ [name='n_verification_link_view']
  8. n_success/ [name='n_success-page']
  9. noon_credentials/ [name='noon_credential_list']
  10. ^static/(?P<path>.*)$

The current path, account/noon_login/, 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.