Increase password length requirements
This commit is contained in:
parent
d0b20f5736
commit
dc247956af
1 changed files with 3 additions and 3 deletions
|
@ -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'],
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue