Fixed typo in password validation message.

This commit is contained in:
MattMo 2022-05-04 09:23:01 -07:00
parent 7f68337626
commit 709cfb8b95

View File

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