The only place I've seen this done is Google. For them it makes sense. Since a long time ago, they've had a feature where you use your custom authentication service to sign in (think: on site Kerberos instance). For example at school the form would show both email and password fields, but I would enter only my school email into the username and then it would redirect me to to my school's centralized login. So now ins…
Tumblr does it
Ask HN: Why are sites now breaking login forms into stages (name then password)?
21–30 of 51 posts
Re: Ask HN: Why are sites now breaking login forms into stages (name then password)?
#22I've seen this on some bank websites, that display a user-selected picture after giving them your user ID. I guess that is so the user can verify that they are talking to the legitimate site.
I've never understood why this is seen as a form of verification. What is stopping a phishing site from simply taking a victim's username and fetching the victim's corresponding image from the bank's website via simple scraping?
Re: Ask HN: Why are sites now breaking login forms into stages (name then password)?
#23The only justification I've ever seen was places gearing up for multi-factor authentication. The front login page, asking for your account, tells the backend how you're configured to login (token, password, biometric, whatever). Then the second page is variable depending on your authentication method.
Re: Ask HN: Why are sites now breaking login forms into stages (name then password)?
#24Several large sites, including google/gmail and MS, do this so they can offer separate corporate versions of their cloud products. When you enter your username, it checks whether this is a consumer or corporate username, then the password page you see actually comes from a completely different page. Try going to login.microsoftonline.com which has both a username and a password field and then type "alpha@bristol.ac.u…
Re: Ask HN: Why are sites now breaking login forms into stages (name then password)?
#25I'm really looking forward to an answer for us, if someone with deep and relevant knowledge is around. There are a couple of possibilities that come to mind: 1) Perhaps testing reveals that some users are pushed away by the complexity of being confronted with two fields at the same time, and these users are more likely to successfully login presented with only one field at a time. 2) Perhaps there is some actual good…
> the complexity of [...] two fields If that is true the world is doomed. Giant Meteor 2016
I don't buy it.
Re: Ask HN: Why are sites now breaking login forms into stages (name then password)?
#26I've yet to encounter this - do you have an example site? It seems.. wrong and backwards.
Re: Ask HN: Why are sites now breaking login forms into stages (name then password)?
#27Earlier quoted context omitted.
I've never understood why this is seen as a form of verification. What is stopping a phishing site from simply taking a victim's username and fetching the victim's corresponding image from the bank's website via simple scraping?
My bank asks a security question if logging in from an unknown computer before offering the image or allowing entry of the password.
Users should be trained to look at the URL bar for the green EV indicator, instead of being trained to believe that a site is legitimate simply because it displays a picture that they select. Banks that encourage this behavior are actively encouraging users to become even more gullible to well-crafted phishing attacks.
Re: Ask HN: Why are sites now breaking login forms into stages (name then password)?
#28I've yet to encounter this - do you have an example site? It seems.. wrong and backwards.
Re: Ask HN: Why are sites now breaking login forms into stages (name then password)?
#29Several large sites, including google/gmail and MS, do this so they can offer separate corporate versions of their cloud products. When you enter your username, it checks whether this is a consumer or corporate username, then the password page you see actually comes from a completely different page. Try going to login.microsoftonline.com which has both a username and a password field and then type "alpha@bristol.ac.u…
The terminology you're looking for here regarding the differing logins for different organizations is Single Sign-On (SSO) Providers. There are a bunch of different methods of implementing SSO, and companies that offer this as a service. Using the two-step login allows Microsoft, Google, etc. to redirect users to authenticate with their associated SSO Provider based on their username, or in this case email address do…
Two-step login is just a way of getting a branded experience in front of the user as soon as possible, nothing more. It is neither necessary nor indicative of SSO (which you have described correctly.)