Skip to content Skip to sidebar Skip to footer

Python Django 2 Email Verification On User SignUp

I'm working on a project using Python(3.6) and Django(2.0) in which I need to verify the user's email on registration. Here's what I have tried: App to users named as users forms.p

Solution 1:

This is because you are returning plain string object instead of valid HTTPResponse.

return "This Email Already exists, Use another email address please!"

Note: You are trying to signup with existing email address.


Post a Comment for "Python Django 2 Email Verification On User SignUp"