Page not Found I got this message

I don;t knwo what means or where is the error. login page exist

Page not found (404)

Request Method: GET
Request URL: http://127.0.0.1:8000/accounts/profile/

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

  1. login/ [name=‘login’]
  2. [name=‘home’]
  3. admin/

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

Add The Path On Your projects/urls.py file

path(‘accounts/’, include(‘django.contrib.auth.urls’)),