generalFunction.js 168 Bytes
Newer Older
Rosanny Sihombing's avatar
updates    
Rosanny Sihombing committed
1
2
3
// password requirement
function checkPasswordReq(pwd) {
    if (pwd.length < 8) {
Rosanny Sihombing's avatar
Rosanny Sihombing committed
4
5
6
7
        isBest = false;
    } else {
        isBest = true;
    }
Rosanny Sihombing's avatar
updates    
Rosanny Sihombing committed
8
9
    return isBest
}