## -*- coding: utf-8 -*- <%inherit file="base/root.html"/> <%def name="title()"> ${_('Sign Up')} %if c.rhodecode_name: · ${c.rhodecode_name} %endif
<%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:
${_('Your account will be activated right after registration')}
%else:
${_('Your account must wait for activation by administrator')}
%endif
${h.end_form()} %if c.captcha_active: %endif