You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've seen a lot of failed requests in our logs where users are trying to login with their e-mail account instead of using their username. It could be that they have forgotten their username or that they are just accustomed to logging in using an e-mail address as that's something that a lot of sites allow.
To decrease these login failures we should just support e-mail based logging in. There are 2 easy approaches in to fixing this:
Use a regexp to check if the supplied username is a valid e-mail address and fetch the user resource based on e-mail adress.
Just fallback to checking the e-mail address if account isn't found.
The text was updated successfully, but these errors were encountered:
I've seen a lot of failed requests in our logs where users are trying to login with their e-mail account instead of using their username. It could be that they have forgotten their username or that they are just accustomed to logging in using an e-mail address as that's something that a lot of sites allow.
To decrease these login failures we should just support e-mail based logging in. There are 2 easy approaches in to fixing this:
The text was updated successfully, but these errors were encountered: