## -*- coding: utf-8 -*- <%inherit file="base/root.html"/> <%block name="title"> ${_('Sign Up')}
<%include file="/base/flash_msg.html"/>
${h.form(url('register'))}
${h.text('username',class_="medium")}
${h.password('password',class_="medium")}
${h.password('password_confirmation',class_="medium")}
${h.text('firstname',class_="medium")}
${h.text('lastname',class_="medium")}
${h.text('email',class_="medium")}
%if c.captcha_active:
${h.hidden('recaptcha_field')}
%endif
${h.submit('sign_up',_('Sign Up'),class_="btn")} %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()} %if c.captcha_active: %endif