Im new to django framework can anyone help me in solving this issue
This is my installed apps
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
# my-apps
"visits",
"commando",
#Third part app
'allauth_ui',
'allauth',
'allauth.account',
'allauth.socialaccount',
'widget_tweaks',
'slippers',
This is URL patterns
urlpatterns = [
path('',home_view),#index page -> root page
path('login/',auth_views.login_view),
path('register/', auth_views.register_view),
path('about/',about_view),
path('hello-world/',home_view),
path('admin/', admin.site.urls),
path('accounts/', include('allauth.urls')),
]
This is how UI is looking standard UI
Log data
System check identified 3 issues (0 silenced).
April 10, 2025 - 18:46:07
Django version 5.1.6, using settings 'cfehome.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.
[10/Apr/2025 18:47:10] "GET /accounts/login/ HTTP/1.1" 200 2935
[10/Apr/2025 18:47:10] "GET /static/allauth_ui/output.css HTTP/1.1" 404 1877
[10/Apr/2025 18:47:13] "GET /accounts/login/ HTTP/1.1" 200 2935