The Email fielld on the home page is there in Design Mode but not in Live Mode. It was not there earlier and the Name fields dropped down. I moved some code around and now there’s an empty space so I’m fairly certain it’s the code.
$w.onReady( function () {
//TODO: write your page related code here…
let emailAddr = $w(“#emailAddr”).value;
let confirmEmail = $w(“#confirmEmail”).value;
if (emailAddr === confirmEmail) {
console.log(“They match!”);
} else {
console.log(“The don’t match”);
}
let password1 = $w(“#password1”).value;
let password2 = $w(“#password2”).value;
if (password1 === password2) {
console.log(“They match!”);
} else {
console.log(“The don’t match”);
}
});
Thank yoou for helping out.