Page not found (404)

Request Method: GET
Request URL: https://portal.skfreelancers.com/newtheme/login.html

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

  1. admin/
  2. get_last_login_time/ [name='get_last_login_time']
  3. update-last-login/ [name='update_last_login']
  4. home2/ [name='home']
  5. [name='home2']
  6. add-task/ [name='add-task']
  7. my-tasks-completed/ [name='my-tasks-completed']
  8. all-users-tasks/ [name='all-users-tasks']
  9. all-users-graph/ [name='all-users-graph']
  10. all-pending-tasks/ [name='all-pending-tasks']
  11. testfunc
  12. view-all/ [name='viewall']
  13. view-all-data/ [name='view-all-data']
  14. view-all-users-data/ [name='view-all-users-data']
  15. dashboard/ [name='dashboard']
  16. yearly-report [name='yearly-report']
  17. login/ [name='login']
  18. change-password/ [name='change-password']
  19. add-todo/
  20. <int:id>/ [name='todos_update']
  21. delete-todo/<int:id>
  22. change-status/<int:id>/<str:status>
  23. logout/ [name='logout']

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