Adjusted password validate wording to be more clear.

This commit is contained in:
MattMo 2021-12-16 11:57:08 -08:00
parent 1f7a49d34d
commit 368f713dba

View File

@ -228,7 +228,7 @@ function notify(target, type, msg, duration) {
IgniteTemplate.prototype.validatePassword = function(msg) {
return this.validate((value, error) => {
if (!value || value.trim().length < 5) {
return error(msg ? msg : `Password is too short.`);
return error(msg ? msg : `Password is must be at least 5 characters.`);
} else if (value.includes(' ')) {
return error(msg ? msg : 'Password cannot contain spaces.');
} else if (value.length > 64) {