An error occurred while loading the file. Please try again.
generalFunction.js 168 bytes
// password requirement
function checkPasswordReq(pwd) {
    if (pwd.length < 8) {
        isBest = false;
    } else {
        isBest = true;
    return isBest