wsvincent/lithium

Add ACCOUNT_SIGNUP_FORM_CLASS to settings.py

Closed this issue · 2 comments

The custom user creation form right now is ignored.

Add this to settings.py:

ACCOUNT_SIGNUP_FORM_CLASS = "users.forms.CustomUserCreationForm"

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.

Just added it. Thanks @NikolaiT and @robsonsilv4 for bringing it to my attention.