Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

username or email id for login?

For a web application, which is the better option?

Usernames has to rely on an email for the person to recall later. Conversely, it's rare for a user to use multiple usernames for a particular web application. Also, sending details back to the user's email gives a certain level of security.

Email on the other hand has additional related problems - Most users have multiple email ids and invariably multiple accounts get created. Merging those accounts become a huge headache. Conversely, using an email as a login identifier has the advantage of external authentication via OpenID.

What would you suggest?

like image 940
abhijit Avatar asked Sep 01 '09 07:09

abhijit


People also ask

Should I use email or username for login?

Email addresses are useful as users should already remember then and they don't have to think about anything. This is useful if you don't have a "username" on your app. Example: Paypal or Dropbox, where no user name is needed to use these apps and the email is the best way to connect with other people.

Is email ID same as username?

The username is the name you choose to be identified with for e-mail purposes and that you have provided to the e-mail host to create your e-mail account. The domain name is the internet designation for the e-mail host, which may be a private site, company, organization, or government entity.

Is username the same as login ID?

A Username is a special name given to a person to uniquely identify them on a computer network. Also called account names, login IDs, or user IDs, usernames are given to a person by the network administrator or they are selected by the user.

What is the login username?

Also called login name, logon name, sign-in name, sign-on name . a unique sequence of characters used to identify a user and allow access to a computer system, computer network, or online account. the part of an email address before the @ sign.


1 Answers

same as What to use for login ID?. The accepted answer there is email address.

and some further reading:

  • What are the pros and cons of using an email address as a user id?
  • What are the pros and cons of using an email as a username?
like image 158
Natrium Avatar answered Nov 09 '22 23:11

Natrium