How can I check if a password has a maximum of 5 characters in Mendix?

0
is there any alternative to this?   if (length($Password) <= 5) {  } else {  }   in microflow Expression,  thanks in advance
asked
1 answers
1

Hello Muhammad,

You can check it this way with the help of microflow, use the decision block to check if the password is less than or equal to 5 characters.

image.png

 

Password policy, you can also set in the Security application, but here you have a minimum length to choose from.

 

image.png

 

If I helped, please accept the answer.

Regards,

Adam

answered