% layout 'standard', title => 'Register', sb_active => 'register';

Create an account

%= include '_base/status_window';
<%= include '_base/form/input', type => 'text', name => 'name', title => 'Your name', help => '', value => $c->stash->{form_name} %> <%= include '_base/form/input', type => 'email', name => 'email', title => 'Email Address', help => '', value => $c->stash->{form_email} %> <%= include '_base/form/input', type => 'password', name => 'password', title => 'Password', help => '', value => $c->stash->{form_password} %> <%= include '_base/form/input', type => 'password', name => 'password_confirm', title => 'Confirm Password', help => '', value => $c->stash->{form_password_confirm} %> % if ( $c->config->{register}->{require_invite} ) { <%= include '_base/form/input', type => 'text', name => 'invite_code', title => 'Invitation Code', help => '', value => $c->stash->{form_invite_code} %> % }