# Check if text string is shorter than 33 characters: |
Tthe maximum allowed length / size
# Check if text string is longer than 33 characters:
INPUT(_type='text', _name='name', requires=IS_LENGTH(maxsize=32))
The minimum allowed length / size
# Check if password string is longer than 5 characters:
INPUT(_type='password', _name='name', requires=IS_LENGTH(minsize=6))