validate_registration_form.naml

<override_macro name="validate_registration_form">
    <n.user_name_field.notify_if_empty/>
    <n.email_field.notify_if_empty/>
    <n.password_field.notify_if_empty/>
    <n.password2_field.notify_if_empty/>

    <n.if.not.equal value1="[n.password_field.value/]" value2="[n.password2_field.value/]">
        <then.throw_template_exception name="passwords_dont_match"/>
    </n.if.not.equal>
    
    <n.if.not.equal value1="[n.validate_field.value/]" value2="行诸山野,立命天地">
        <then.throw_template_exception name="invalid_recaptcha"/>
    </n.if.not.equal>

    <n.if.not.accept_terms_field.is_checked>
        <then.throw_template_exception name="must_accept_terms_of_use"/>
    </n.if.not.accept_terms_field.is_checked>
</override_macro>