This commit is contained in:
2021-10-21 20:52:23 +02:00
parent 17f93a6846
commit 4aed96037d
11 changed files with 57 additions and 49 deletions

View File

@ -5,6 +5,11 @@ function showCard(card, button) {
}
function updateHost(input) {
if (input.value) {
input.required = true
} else {
input.required = false
}
if (input.form.checkValidity()) {
var td = input.parentElement
var tr = td.parentElement