4

I have found in this question (and the doc) that one can use ACCOUNT_SIGNUP_FORM_CLASS to define some custom form field presented during account registration. However, this form does not seem to appear in the flow of using a social account (at least not by default).

Is there a way to have it, or to easily customize some handlers so that I could introduce such step ? Otherwise, this would give a quite non-unified signup process (people using social accounts would have to go and fill the information afterwards in some settings screen, rather than just being asked it once).

Community
  • 1
  • 1
Gnurfos
  • 980
  • 2
  • 10
  • 29
  • 1
    You could set `SOCIALACCOUNT_AUTO_SIGNUP = False`. Upon successful authentication the user will be redirected to your signup form. This also kicks in if the email is repeated. – mrkre Dec 07 '13 at 03:58

1 Answers1

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'
}
Aamir Rind
  • 38,793
  • 23
  • 126
  • 164