Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 1.59 KB

README.md

File metadata and controls

18 lines (15 loc) · 1.59 KB

Better password UX

Passwords today are broken. They are complex, not fit for humans and most are not very secure. This project serves as a way to add some key and imho vital improvements to web password inputs which are today just plain broken if not insane.

To help the user enter a better password which is more secure and memorable it's recommended to

  1. Not mask the password by default
  2. Only mask the password on blur (after they exit the field)
  3. Or if the user is paranoid and explicitly wishes to mask it (A good UX principle is to never assume we know whats best for the user, they may have a valid reason for masking)
  4. Only enter the password once. No confirm password input needed since the user can now read what they input
  5. Display a live password strength indicator, that is ...
  1. Do NOT recommend to the user that they should use a combination of mixed upper case lowercase, numeric, or special characters
  2. Do recommend to the user that they can enter a memorable set of words and spaces as their password. How to choose a secure password

To help describe in practise some of these UX guidelines, I have come up with a small demo you can play with: Demo