]> Dogcows Code - chaz/chatty/blob - root/tt/register.tt
better client-side form validation; layout tweaks
[chaz/chatty] / root / tt / register.tt
1 [% META title = 'Register' -%]
2 [% BLOCK js -%]
3 $('form').validationEngine();
4 $('form input[type=reset]').click(function() {
5 $('form').validationEngine('hideAll');
6 });
7 [% END -%]
8 <h1>Register</h1>
9 [% IF ! c.user_exists -%]
10 [% form.render %]
11 [% ELSE -%]
12 <p>You are already registered and logged in. There is no need to register again.</p>
13 [% END -%]
This page took 0.033748 seconds and 4 git commands to generate.