Increase password length requirements

This commit is contained in:
Jay Trees 2022-03-23 10:33:16 +01:00
parent d0b20f5736
commit dc247956af

View file

@ -2,7 +2,7 @@ $(function() {
$('.ui.form').form({
fields: {
email : 'email',
password: ['minLength[6]', 'empty'],
password : ['minLength[8]', 'empty'],
planet : ['minLength[3]', 'empty'],
}
});