-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Registration E-mail Verification #20
Comments
I should extend this and verify if a user has confirmed there email on login. Or is that not needed? |
Basically, if a User has not confirmed their email, their is_active = False. According to https://docs.djangoproject.com/en/1.3/topics/auth/#django.contrib.auth.models.User.is_active it's not mandatory that is_active is checked. You can easily check it yourself if you want, and that would be all you need to do. |
your stuff looks good though, merge it with master |
Not yet, need to fix up login and I think there's a small vulnerability somewhere. Will do all that and more tomorrow. |
I've patched up everything I could think of, awaiting one more check before merging. |
Need to implement e-mail verification to validate e-mails. Will also extend Django User to be able to implement this and require e-mails on registration.
The text was updated successfully, but these errors were encountered: