[Django]-Django-allauth: custom signup form for socialaccount

0👍

As of now you can defined SOCIALACCOUNT_FORMS in your settings to set your own custom social signup form:

SOCIALACCOUNT_FORMS = {
    'signup': 'myproject.myapp.forms.CustomSocialSignupForm'
}

Leave a comment