Add ACCOUNT_SIGNUP_FORM_CLASS to settings.py
Closed this issue · 2 comments
NikolaiT commented
The custom user creation form right now is ignored.
Add this to settings.py:
ACCOUNT_SIGNUP_FORM_CLASS = "users.forms.CustomUserCreationForm"
robsonsilv4 commented
There is also a new way of doing this:
ACCOUNT_FORMS = {'signup': 'users.forms.CustomUserCreationForm'}
I just made the pull request with this addition, I hope @wsvincent accepts.
wsvincent commented
Just added it. Thanks @NikolaiT and @robsonsilv4 for bringing it to my attention.