Page not found (404)

Request Method: GET
Request URL: http://e-vasign.com/register

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

  1. admin/
  2. login/ [name='login-view']
  3. logout/ [name='logout']
  4. password_change/ [name='change-password']
  5. [name='dashboard']
  6. profile/ [name='profile']
  7. main/
  8. zip_code/
  9. signs/
  10. otp/
  11. ocr/
  12. ^static/(?P<path>.*)$
  13. ^media/(?P<path>.*)$

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