Anyone have advice for creating easy-to-use-yet-secure login solutions for users who are less tech-literate?<p>My company is an ISP, and most of our customers are not very "good" at using technology. Any yet, they do sometimes want to log into our dashboard for one reason or another, and it tends to be a lot of trouble.<p>We've found that:<p>- <i>Many</i> people do not have an email. Some people don't have a phone number. Many people have only one or the other, but not both.<p>- People typo their emails... a LOT. I initially had some very simple validation for email addresses, until I started getting droves of emails that were one character off. I'm at this very moment working on a feature to alert users if they type "gmail.co", "gmail.con" or "gnail.com", which are all very common (and two of which are completely valid domain names by the way!).<p>- Some people get confused by "creating a new account" or dealing with multiple accounts in general. They'll say "my email login didn't work." Well, to me it's obvious that they have a different password for different accounts, but to them it's not.<p>- Building on that, they are not great at password resets. The "send a password reset to email" thing is confusing to them, because from their perspective their email <i>is</i> the account. Am I resetting my email password?? They don't like it so they don't want to do it.<p>- Since we are an ISP providing customers with WiFi, there is also confusion between the WiFi password and the dashboard password. I've had people successfully reset their dashboard password, expecting it to also set their WiFi password.<p>- Literacy can also be less than ideal. I once reset a customer's WiFi password over the phone, and the new password contained an exclamation point. She didn't know what an exclamation point was. I got her to do SHIFT-1 eventually, but it took a while. (I found out later that nobody else sees an exclamation point as an "upside-down i", which is what I've always seen it as. The proper way to describe it to someone who doesn't know is "line with a dot underneath".) Now my password generator only uses A-Za-z0-9 (but not 0 or O).<p>So, I have been learning the hard way that not every person in the world is an avid Hacker News reader who knows what accounts and password hashes are and how everything works. And yet, these people deserve to be empowered by technology just like the rest of us.<p>The thing is, many of these folks <i>are able to use software just fine, it's just that they have trouble getting logged in</i>. It really is the logging in that trips everything up.<p>So I've been thinking lately that I want to fix this for my company, but I'm unsure what to try.<p>I had the thought of trying Webauthn, but that seems unusable for me as per this comment I wrote a few weeks ago[0]. If I could solve the problem in that comment, I think a lot of my customers would use "Login with TouchID", "Login with FaceID", etc.<p>Anyway, my point is that no, I do not think magic links are outdated. We use a lot of magic links. Need to update your credit card? We'll text you a link. Want to reschedule your install? We'll text you a link. This is the best way we've found to actually get our software into the users' hands.<p>[0] <a href="https://news.ycombinator.com/item?id=31850471" rel="nofollow">https://news.ycombinator.com/item?id=31850471</a>