function akceptacjaRegulaminu() { var imie = document.getElementById('imie'); var nazwisko = document.getElementById('nazwisko'); var email = document.getElementById('email'); var zgloszenie = document.getElementById('zgloszenie'); var zgoda = document.getElementById('zgoda'); var komunikat = document.getElementById('komunikat'); if (zgoda.checked == true) { console.log("odhaczony"); komunikat.innerHTML = "
Odchaczony"; }else { console.log("Nie odhaczony"); } }