I'm using django 1.7. I have installed django-registration-redux and created the templates required to render the registration form. How can I ensure that the email address is unique in the registration form. I can perhaps create custom user registration model and then give a unique constraint to the email? Are there alternatives?
I was looking at the solution earlier but this is for the "django-registration"
Django-registration, force unique e-mail
The monkey patch in the model below seems to work but then it's just throwing a nasty error message, instead I want it throw the error message above the email field
User._meta.get_field('email')._unique = True