Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Acceptable Password II by mortonfox
function isAcceptablePassword(s) {
return s.length > 6 && /\d/.test(s);
}
Nov. 14, 2022