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

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