Apologies for not knowing the proper term for this, but I have increasingly noticed that many websites are adopting a new login process that I can only describe as "Enter Username, then redirect to Enter Username + Enter Password". In other words, I have to enter my username, then it redirects me to a new page where I enter my password (sometimes the username field is present too, sometimes it is not). This is different from the past where the username and password field were almost always on the same page.
I think this might have something to do with oAuth, but I see this behavior on websites that don't use any common account infrastructure.
Ultimately, I have two questions for web designers and UI/UX folks. What is the name of this pattern? And, does it bring any benefits or is it just a trendy thing to do?
1. "Single Sign-On"/Multi-Provider support where the email is used as a lookup key for which Provider to use to log in (redirecting to corporate SAML providers or things like that). (Mentioned by most of the other commenters here.)
2. Another "Wish It Were Multi-Factor" process that (mostly American) Banks cooked up to meet regulatory wording at available loopholes rather than address regulatory intent/spirit (real Two-Factor/Multi-Factor support), in this case specifically for phishing protection. That (dumb) idea was that the user in application settings would pick a recognizable "callback" such as a photo of a cute animal and a word they'd notice. Upon entering the username and before entering the password the application would display this "callback" and in theory the user would remember and know better than to enter their password if they saw the wrong "callback" photo/word. In practice I think we all realize that humans do things like username/password login generally by rote muscle memory, aren't likely to stop and "check the cute animal photo" first, and that whatever APIs returned the "callbacks" would be easily scrapable for phishing anyway if the only real input to them was email address (and maybe a rate limit). At least in my experience most of the sites that did this "cute animal wish it were phishing protection" have since dropped the "cute animal" callbacks (because they were silly), but kept the separate username then password flows. It's easy to assume that that's just laziness on their part after they did all that work to separate the flow that they would not be quick to merge it back together.