diff --git a/src/components/AuthPages/VerifyPassword/index.jsx b/src/components/AuthPages/VerifyPassword/index.jsx index 37fc6e6..72a209e 100644 --- a/src/components/AuthPages/VerifyPassword/index.jsx +++ b/src/components/AuthPages/VerifyPassword/index.jsx @@ -54,7 +54,7 @@ const VerifyPassword = () => { }, process.env.REACT_APP_RESET_START_ERROR_TIMEOUT); } if(!PasswordValidator(password)){ // CHECKS IF PASSWORD IS VALID - setMsgError("Invalid Password: eg: Password1@"); + setMsgError("Password must contain alphanumeric, uppercase and special character: eg: Password1@"); return setTimeout(() => { setMsgError(null); }, process.env.REACT_APP_RESET_START_ERROR_TIMEOUT);