Page not found (404)

Request Method: GET
Request URL: https://www.digitalstream.dev/users/login/index.html

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

  1. admin/
  2. users/ register/ [name='register']
  3. users/ profile/ [name='profile']
  4. users/ profile-update/ [name='profile-update']
  5. users/ login/ [name='login']
  6. users/ logout/ [name='logout']
  7. users/ base/ [name='base']
  8. store/
  9. feed/ [name='feed']
  10. post/<int:pk>/ [name='post-detail']
  11. [name='home']
  12. posts/<str:tag>/ [name='posts-by-tag']
  13. post/new/ [name='post-create']
  14. post/<int:pk>/update [name='post-update']
  15. post/<int:pk>/delete [name='post-delete']
  16. password_reset/ [name='password_reset']
  17. password_reset/done/ [name='password_reset_done']
  18. password_reset_confirm/<uidb64>/<token>/ [name='password_reset_confirm']
  19. password_reset_complete/ [name='password_reset_complete']
  20. ^media/(?P<path>.*)$
  21. ^static/(?P<path>.*)$

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