Currently, I have a custom user model with the following settings
ACCOUNT_USER_MODEL_USERNAME_FIELD = None
ACCOUNT_EMAIL_REQUIRED = True
ACCOUNT_USERNAME_REQUIRED = False
ACCOUNT_AUTHENTICATION_METHOD = 'email'
and an additional display name field.(non-unique) I added a signup form class to prompt users for a display name.
ACCOUNT_SIGNUP_FORM_CLASS = 'users.forms.SignupForm'
How do I get get allauth to automatically fill in display name(using facebook name) and email address automatically instead of prompting for the display name and email address after clicking on the facebook button?