validate_registration_form

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "validate_registration_form".
... in register.naml
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<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.accept_terms_field.is_checked>
        <then.throw_template_exception name="must_accept_terms_of_use"/>
    </n.if.not.accept_terms_field.is_checked>
</macro>