6 ms·
A lot of sites now don't even a "sign in" now. You only have a large "sign up" button, which you have to click, and then in very small text at the bottom of th
by billyjobob 3y ago
A lot of sites now don't even a "sign in" now. You only have a large "sign up" button, which you have to click, and then in very small text at the bottom of the sign up screen find the link for "already have an account?"
- verall 3y agoI haven't figured this one out either - why show the user how difficult it will be to use before they sign up? That's supposed to be for after.
- Solvency 3y agoDon't you see? All that matters is those tasty conversions. They want your email. They want your conversion. What's that? You've converted already and want to login? Sorry, we've got more conversions to drive, can't be bothered.
- ryandrake 3y agoI worked with a designer that actually told me this un-sarcastically. "My KPI is signups, not logins. Bury the login link. Existing users don't move the metric." Metrics-based and KPI-based software development has ruined quality for decades.
- Tade0 3y agoI've split tickets into smaller chunks because the number of tickets closed was my KPI at the time. It's dumb and current me would just say that out loud and not participate in this circus.
- mikrotikker 3y agoReminds me of those explorers who paid the natives for every dinosaur bone they turned in, only to be horrified when they realized the natives were breaking the bones into as many pieces as possible to collect as much currency as possible.
- esafak 3y agoThis is what happens when you strongly tie promotions to metrics. Make sure you have the right ones, or don't do it. Left to his own devices, the designer would probably have done the right thing. It takes a bad incentive to make someone do something like this.
- immibis 3y ago"Whatever you measure will improve. This is a warning."
- guestbest 3y agoI wish sites only wanted email. Mostly they want to integrate with Google, Facebook and require a phone number.
- nerdponx 3y agoI'm waiting for the day when we see an article about some government tax or bill-pay portal that only works with Facebook and Google login, no email.
- guestbest 3y agoIf you want to even more dystopian, imagine every separate account is taxed on every forum/chat apo and failure to report is tax fraud.
- Nextgrid 3y agoThere are already some essential services that use ReCaptcha and require you to be stalked by Google and be on good standing with them.
- r00fus 3y agoI guess you’re supposed to bookmark the deep link that goes to your dashboard then let it send you to the Interstitial login page. Bad UX though.
- cpeterso 3y agoWeb UX designers need to find some alternative button label that users understand means both “Sign up” and “Sign in”. The site will know if your email address has an account and should then be asked does a password. Though users will still complain that the login process requires two steps: entering a username and then the backend determining whether to next serve a password or registration form.
- guntars 3y agoNeeding a bunch of JavaScript to make it work, which will get bungled by the devs and break it for people using password managers, making the thing even worse. Login is such a common pattern that it should be just handled by the browser.
- cpeterso 3y agoGood point. It's unfortunate that HTTP Auth never become popular. I don't know if that was because the browser support or UX was bad or if web developers wanted more control over their sites' login flow or user information required. https://developer.mozilla.org/en-US/docs/Web/HTTP/Authentication https://developer.mozilla.org/en-US/docs/Web/HTTP/Authentica...
- efreak 3y agoThe problem is that you have a few options: 1. send in plain text with http basic auth. Over https this isn't a problem, but https was expensive). This is sent on every request. 2. Use digest. This is also sent on every request, and also requires actual processing, at which point you might as well go for 4 so it looks nice. 3. Use certificates. Nobody does this on the pubic web. The only website I've ever used certificates was whatever certificate site predated let's encrypt, can't remember the name at the moment, and as someone who doesn't use client certificates it was a huge pain (blame that on the browsers though) 4. Use a form on the website with a session token, and you get control over the UI including error messages and styling. Much more user-friendly. You can trivially prevent the user from (easily) sending requests with pain text passwords by only showing sensitive pages like login over https. The user can't bookmark or share a URL with a password embedded in it. You can request more information than just username and password (Bank: do you want to see your checking account or savings account? Forum: go back to previous page or to homepage? SSO-ish (DayForce): what's the name of the org you're signing into?)
- pessimizer 3y agoNobody wants you to ever turn a device off, or to ever log out of a website.
- phist_mcgee 3y agoGuilty of implementing this exact thing only the other month. "We" just assume that anyone who has already signed up will always be signed in.
- efreak 3y agoMy mother signs out of her email every time she closes it, and does the same for other websites as well. She's the only one who uses her computer, and it has a password on it (mostly because Windows won't do file sharing without one). She still refuses to stay signed in. Not everyone wants to stay logged in, and not everyone uses a single browser; I occasionally use the wrong browser profile for something because I cbf loading up the correct one; in these cases I usually load the website in a private browsing tab to avoid container/addon settings interfering. When I can't log in easily, I get quite annoyed.