Plenty of space for a smooth sub-title!
body { font-family: Arial, sans-serif; padding: 20px; }
label, input, textarea { display: block; margin-bottom: 10px; width: 100%; }
button { background-color: #25D366; color: white; padding: 10px; border: none; cursor: pointer; }
Melding door BewonersTeam
function stuurWhatsApp() {
let omschrijving = document.getElementById('omschrijving').value;
let actieUitgevoerd = document.getElementById('actieUitgevoerd').value;
let actieGewenst = document.getElementById('actieGewenst').value;
let locatie = document.getElementById('locatie').value;
let datum = document.getElementById('datum').value;
let bericht = `📢 *Melding door BewonersTeam*%0A%0A` +
`📝 *Omschrijving*: ${omschrijving}%0A` +
`✅ *Actie uitgevoerd*: ${actieUitgevoerd}%0A` +
`🏛 *Gewenste actie*: ${actieGewenst}%0A` +
`📍 *Locatie*: ${locatie}%0A` +
`📅 *Datum/tijd*: ${datum}%0A%0A` +
`📸 *Foto bijgevoegd (apart uploaden in WhatsApp)*`;
let whatsappUrl = `https://api.whatsapp.com/send?text=${bericht}`;
window.open(whatsappUrl, '_blank');
}