New Username: |
[% IF c.form.error('new_username') %]
[% IF c.form.error('new_username', 'HAS_BLANK') %]
don't put blank in your username.
[% ELSIF c.form.error('new_username', 'HAS_SPECAIL_CHAR') %]
only A-Z, a-z, 0-9, - is allowed.
[% ELSIF c.form.error('new_username', 'HAS_RESERVED') %]
this username is reserved.
[% ELSIF c.form.error('new_username', 'DBIC_UNIQUE') %]
This username is used by another one.
[% ELSE %]
username should be 6-20 chars.
[% END %]
[% END %]
only A-Z, a-z, 0-9, -, _ is allowed.
|