Santa Maria
San Leone
Chiesa 3
.command-button {
padding: 12px 20px;
background-color: #0074d9;
color: white;
border: none;
border-radius: 8px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.command-button:hover {
background-color: #005fa3;
}
function sendCommand(command) {
const chiesa = document.getElementById("select-chiesa").value;
const url = `http://${chiesa}.local/${command}`;
fetch(url)
.then(res => {
if (!res.ok) throw new Error('Errore nella risposta');
alert(`Comando "${command}" inviato alla ${chiesa}`);
})
.catch(err => alert("Errore di connessione o comando non riuscito."));
}