Hello, on register.php in this code:
How can I add requirements so the account cannot be created unless these fields meet the requirements of:
I tried something like this but that did not work:
Ty
- Code: Select all
Password:<br />
<cms:input name='extended_user_password' type='bound' /><br />
Repeat Password:<br />
<cms:input name='extended_user_password_repeat' type='bound' /><br />
How can I add requirements so the account cannot be created unless these fields meet the requirements of:
- Code: Select all
validator='alpha_num | min_len=8 | max_len=14'
I tried something like this but that did not work:
- Code: Select all
Password:<br />
<cms:input name='extended_user_password' type='bound' validator='alpha_num | min_len=8 | max_len=14' /><br />
Repeat Password:<br />
<cms:input name='extended_user_password_repeat' type='bound' validator='alpha_num | min_len=8 | max_len=14' /><br />
Ty