When you sign up for an account here and use a password manager to generate a sensible length password the following error message is displayed (complete with paragraph HTML elements): <p>Password must be between 4 and 40 characters long</p> There are three bugs exposed by that error message: 1. Minimum password length is only 4 characters (should be 12 or 16 depending) 2. Maximum password length is only 40 characters. I use 128 character passwords by default via a password manager. There's no sensible reason to have such an unreasonably short maximum password length -- why don't you want me to have a secure password? I really hope you're hashing using brcypt/scrypt/argon2/pbkdf2 and not an unsalted hash algorithm like MD5 or any of the SHAs. And please please don't tell me the passwords are stored using reversible encryption... 3. Error message has HTML tags visible.