Contact Us
Contact Details
Teach-ICT.com Limited196 Rushmere Rd, Ipswich, IP4 3LT
Telephone:
01473 719628
Email:
admin@teach-ict.com
function validateForm(){ let x = document.forms["form1"] ["email"].value; let y = document.forms["form1"] ["again"].value; if (x != y){ console.log(x); console.log(y); document.getElementById("emailerror").innerHTML = "The entered emails do not match"; return false; } return true; }