I am using django-inspectional-registration which is based on the official django-registration.
django-inspectional-registration
django-registration
I would like to ensure the uniqueness of th
Try passing the form class as an argument to as_view
url(r'^register/$', RegistrationView.as_view(form_class=RegistrationFormUniqueEmail), name='registration_register')