Page not found (404)

Request Method: GET
Request URL: http://www.help-guy.com/login/

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

  1. admin/
  2. about_me/ [name='about_me']
  3. forum-about/ [name='forum_about']
  4. rules/ [name='rules']
  5. ^ ^$ [name='index']
  6. ^ ^st/admin/
  7. ^ ^user/
  8. ^ ^search/
  9. ^ ^category/
  10. ^ ^topic/
  11. ^ ^comment/
  12. ^media/(?P<path>.*)$

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