feat: Update password validation to require a minimum length of 6 characters
This commit is contained in:
parent
2ccd237329
commit
a2a7eb84b0
@ -33,7 +33,7 @@ class LoginController extends MyController {
|
|||||||
'password',
|
'password',
|
||||||
required: true,
|
required: true,
|
||||||
label: "Password",
|
label: "Password",
|
||||||
validators: [MyLengthValidator(min: 6, max: 10)],
|
validators: [MyLengthValidator(min: 6)],
|
||||||
controller: TextEditingController(),
|
controller: TextEditingController(),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user