In registration.html.php I added the following:
*
THIS IS A TEST FOR THE AGREEMENT TERMS
to see if I can add text.
In the field validation section I added:
} else if ((form.password.value != "") && (form.password.value != form.password2.value)){
alert( "" );
} else if (r.exec(form.password.value)) {
alert( "" );
} else if (form.inputbox.IAgree.value == "yes") {
alert( "" );
} else {
form.submit();
}
}
My Fireworks error consule says "form.inputbox has no properties" and highlights this line:
} else if (form.inputbox.IAgree.value = = "yes") {
Can someone help me with this please ... this feature is very important for my site.
Thanks.