TablIP/script.js
2021-09-25 22:45:02 +02:00

24 lines
606 B
JavaScript

function updateHost(input) {
input.style.backgroundImage = 'url(wait.gif)'
input.style.fontStyle = "italic"
fetch(new Request("updateHost.php", {
method:"POST",
body:new FormData(input.form),
mode:"cors"
})).then(response => {
if (response.ok) {
input.style.backgroundImage = ''
input.style.fontStyle = ""
} else {
input.style.backgroundImage = 'url(nok.png)'
}
})
}
function checkMask(input) {
if (input.checkValidity()) {
} else {
input.setCustomValidity("Masque incorrect")
}
}