| [% c.loc("Email") %] | [% IF c.form.error('email') %]
	    [% IF c.form.error('email', 'DBIC_UNIQUE') %]
	    This email is used by another one.
	    [% ELSIF c.form.error('email', 'EMAIL_DUPLICATION') %]
	    You should type a different email.
	    [% ELSE %]
	    you should spec a correct email.
	    [% END %]
	[% END %] |