[% USE FillInForm %] [% c.load_once("jquery/validate.js") %] [% IF lang != 'en' %] [% c.load_once("jquery/validate/messages_${lang}.js") %] [% END %] [% c.load_once("form.css") %] [% FILTER fillinform fdat => c.req.params %]
[% c.loc('Username') %] [% IF c.form.error('username') %] [% IF c.form.error('username', 'HAS_BLANK') %] don't put blank in your username. [% ELSIF c.form.error('username', 'HAS_SPECAIL_CHAR') %] only A-Z, a-z, 0-9, - is allowed. [% ELSIF c.form.error('username', 'HAS_RESERVED') %] this username is reserved. [% ELSIF c.form.error('username', 'DBIC_UNIQUE') %] This username is used by another one. [% ELSE %] username should be 6-20 chars. [% END %] [% END %]
[% c.loc('Nickname') %]
[% c.loc('Password') %] [% IF c.form.error('password') %]password should be 6-20[% END %]
[% c.loc('Confirm Password') %] [% IF c.form.error('passwords') %]Confirm password is not the same as password[% END %]
[% c.loc("Email") %] [% IF c.form.error('email') %] [% IF c.form.error('email', 'DBIC_UNIQUE') %] This email is used by another one. [% ELSE %] you should spec a correct email. [% END %] [% END %]
I have read and agree to the Terms of Service and Privacy Statement.