Question

I am trying out django-registration. I found that it allows multiple registration for same emailid. I want to prevent that. What is the best way to do that?

ok, I see there is a subclass RegistrationFormUniqueEmail. Now, how to use this class? I changed this

    def get_form_class(self, request):

    return RegistrationFormUniqueEmail

But, it must be better to change this from my application rather than in source code. So, how do I do that? thanks

Was it helpful?

Solution

Once you've added registration to your settings file, you can use the form in your views.py like so:

from registration.forms import RegistrationFormUniqueEmail

form = RegistrationFormUniqueEmail()

That's it. That will give you the form that you need and will take care of the unique email validation.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top