## -*- coding: utf-8 -*- <%inherit file="base/root.html"/> <%block name="title"> ${_('Sign Up')} <%block name="js_extra"> %if c.captcha_active: %endif <%include file="/base/flash_msg.html"/>
%if c.site_name:
${_('Sign Up to %s') % c.site_name}
%else:
${_('Sign Up')}
%endif
${h.form(url('register'))}
${h.text('username',class_='form-control')}
${h.password('password',class_='form-control')}
${h.password('password_confirmation',class_='form-control')}
${h.text('firstname',class_='form-control')}
${h.text('lastname',class_='form-control')}
${h.text('email',class_='form-control')}
%if c.captcha_active:
%endif
${h.submit('sign_up',_('Sign Up'),class_="btn btn-default")} %if c.auto_active:
${_('Registered accounts are ready to use and need no further action.')}
%else:
${_('Please wait for an administrator to activate your account.')}
%endif
${h.end_form()}