eLMS-SWE
eLMS-SWE copied to clipboard
I created a super user and created a user in the django admin
But logging in as any user gets
Invalid form data.
Seems like the login form needs some changes to allow logins. I am evaluating LMS's for a non-profit. This would be nice but don't want to get too deep into the code unless I know there's not a ton of bugs.
I also disabled the csrf middleware
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
#'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware'
]
but still have issues