more password fields should just show you the regex it needs to match
this is my doctor's billing vendor's site so it was a bit of a shock
@bcrypt wait, this is real?? lol
@bcrypt what are the two secret requirements?
@th i'm guessing [a-z] and [A-Z] lol
@bcrypt @th not shown is the regex which parses the requirement regex and shows those bullet points haha
@th @bcrypt I like to imagine they're tokens for "you'll know it when you see it", and "if you have to ask, you'll never know"
@bcrypt We need a better solution than passwords.
@bcrypt You have a data input problem. You decide to just display the regex. Now it's someone else's problem.

@bcrypt
That's not a full description of the requirements. That should be:

At least one lowercase letter, appearing before an uppercase letter, appearing before a number, appearing before one special character (of the list "~!@#$%*&;:.?>+-=_"), which must not be in the last 8 characters of the password.

@bcrypt it's all fun and games until someone dumps the hash of your last password in there as a way to enforce that you can't reuse a password.

Yes, that'd be the wrong way to do that, but there's probably someone out there that doesn't know that, or just doesn't care.

@bcrypt I wonder how many people use that suggested regexp as their password, since it is valid.
@bcrypt Maybe you should require a valid regex as password.