requires = IS_STRONG(min=10, special=2, upper=2) |
Minimum length of the value
requires = IS_STRONG(min=10)
Minimum number of required special characters special characters are any of the following
!@#$%^&*(){}[]-+
requires = IS_STRONG(special=2)
Mminimum number of upper case characters
requires = IS_STRONG(upper=2)
" Web2py Book"