You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The url function in django.conf.urls has been deprecated in Django 4.0 and removed in Django 4.1.
It’s now recommended to use path() and re_path() instead.
To resolve, modify django_login.
from django.urls import re_path, include
from django.contrib import admin
from .views import register
urlpatterns = [
]
...
as well as changes to the url:
at the end, it seems to run for me, problem is I don't see the login prompt currently
The text was updated successfully, but these errors were encountered: