3👍
✅
The following settings should be what you need
LOGIN_REDIRECT_URL = '/' # Or whatever you want to redirect to after email verification
ACCOUNT_EMAIL_REQUIRED = True
ACCOUNT_EMAIL_VERIFICATION = 'mandatory' # This will force verification
There are other settings, but this is what you need to ensure verification is required before users are allowed to login
Source:stackexchange.com