How do I remove the email field from Django allauth signup? No settings here show any option to remove it.
Any idea?
EDIT: My custom form:
class AllauthSignupForm(forms.Form):
    captcha = ReCaptchaField()
    class Meta:
        model = User
        fields = ('username', 'password1', 'password2')
    def signup(self, request, user):
        """ Required, or else it throws deprecation warnings """
        pass
settings.py
ACCOUNT_SIGNUP_FORM_CLASS = 'draft1.forms.AllauthSignupForm'
 
     
     
    