Page not found (404)

Request Method: GET
Request URL: http://massimilianomoraca.me/accounts/login/?next=/newsletter/

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

  1. engine/
  2. sitemap.xml [name='sitemap']
  3. blog/
  4. mappe/
  5. login/ [name='login']
  6. logout/ [name='logout']
  7. password_change/ [name='password_change']
  8. password_change/done/ [name='password_change_done']
  9. password_reset/ [name='password_reset']
  10. password_reset/done/ [name='password_reset_done']
  11. reset/<uidb64>/<token>/ [name='password_reset_confirm']
  12. reset/done/ [name='password_reset_complete']
  13. [name='index']
  14. api/v1/
  15. en/
  16. ^static/(?P<path>.*)$
  17. ^media/(?P<path>.*)$

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