As my title says, I want to know if I there's a way to allow a user to use not only his username, but also his user's email to login. I want to standardize the login procedure because at the moment I'm having my users use many different conventions and it gets pretty messy.
|
feedback
|
|
You could probably do this if you enforce unique email addresses. Meaning no user can have the same e-mail address. This way you could fetch the user by e-mail address and log them in. The form might look something like this:
The view method might look something like this:
OpenID might be another way to go: http://bit.ly/a2OlHX Ensure unique e-mail addresses per user: http://bit.ly/aOaAbw | |||||
feedback
|
|
I think I 'solved' my problem, at least it's functional, for now. I decided to use my own authentication backend. I created a file 'auth_backends.py' and added it to AUTHENTICATION_BACKENDS in my settings.py: My login form fields only contain 'username' and password. The only way I'm doing to check if the entered username is in fact his username or email, is by doing the .find('@'). Is there a better way to check for it? Would this be enough? The whole reason I'm doing this is because it's easier for the user to remember his/her email than his username (which is actually an 'id' consisting of numbers). I'm also going to have to take care of duplicate emails.
| |||
|
feedback
|