Modified files
djangocourse/settings.py
---
+++
@@ -139,6 +139,13 @@
LOGIN_REDIRECT_URL = "home"
LOGOUT_REDIRECT_URL = "account_login"
+# Allauth settings
+ACCOUNT_AUTHENTICATION_METHOD = "email"
+ACCOUNT_UNIQUE_EMAIL = True
+ACCOUNT_EMAIL_REQUIRED = True
+ACCOUNT_USERNAME_REQUIRED = False
+ACCOUNT_EMAIL_VERIFICATION = "none"
+
# Internationalization
# https://docs.djangoproject.com/en/5.1/topics/i18n/