halo semua. saya ingin bertanya, kenapa code utk skillpath no 5 dan 6 ini saya salah terus ya? saya bingung perbaikinya dari mana. terima kasih
no 5
<form id="myForm">
<p>Nama: <input type="text" name="nama"></p>
<p>Kota: <input type="text" name="city"></p>
<p>Email: <input type="email" name="email"></p>
<p>Zip-Code: <input type="number" name="zip-code"></p>
<label id="check">"Dengan ini saya menyatakan data yang diisi
pada form ini adalah benar dan telah sesuai"
</label>
<p>Status: <input type="checkbox" name="status"></p>
<button id="submit-form" type="submit">Submit</button>
<div id="warning"></div>
</form>
</fieldset>
no 6
document.getElementById(“myForm”).addEventListener(“submit”, function(event) {
event.preventDefault();
submit();
});
// Function untuk membaca inputan form
function handleGetFormData() {
const nama = document.getElementById("name").value;
const city = document.getElementById("city").value;
const email = document.getElementById("email").value;
const zipCode = document.getElementById("zip-code").value;
const status = document.getElementById("status").checked;
return {
name: namaInput.value,
email: emailInput.value,
city: cityInput.value,
zipCode: zipCodeInput.value,
status: statusInput.checked
};
}