This is urls.py
from django.contrib import admin from django.urls import path, include urlpatterns = [ path('admin/', admin.site.urls), path('', include('todolist.urls')), path('', include('account.urls')), ] his is setting.py
from pathlib import Path # Build paths inside the project like this: BASE_DIR / 'subdir'. BASE_DIR = Path(__file__).resolve().parent.parent STATIC_URL = '/static/' STATICFILES_DIRS = (BASE_DIR / 'static'), LOGIN_REDIRECT_URL = 'home' LOGIN_URL = 'login' CRISPY_TEMPLATE_PACK = 'bootstrap4' #STATIC_ROOT = os.path.join(BASE_DIR, 'static') DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' This sis all file...Can Any One Please help me on my issue ??? Thanks In Advance