Page not found (404)

Request Method: GET
Request URL: http://127.0.0.3:8000/empresas/auth/login

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

  1. admin/
  2. [name='welcome']
  3. auth/login/ [name='login']
  4. register/ [name='register']
  5. api/
  6. api-auth/
  7. empresas/ [name='index']
  8. about/ [name='about']
  9. empresas/adicionar/ [name='addNew']
  10. auth/
  11. auth/register/ [name='register']
  12. logout/ [name='logout']
  13. empresa/<int:empresa_id>/ [name='empresa']
  14. empresa/<int:empresa_id>/adicionarsalario/ [name='addSalario']
  15. account/ [name='account']
  16. favicon.ico

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