9👍
✅
Try passing the form class as an argument to as_view
url(r'^register/$', RegistrationView.as_view(form_class=RegistrationFormUniqueEmail),
name='registration_register')
Source:stackexchange.com