???
123123123123
.....................................................................................................................................???
123123123123
.....................................................................................................................................
Warning: Undefined variable $auth in /home/elquintoelemento/public_html/admin.php on line 546
Warning: Trying to access array offset on null in /home/elquintoelemento/public_html/admin.php on line 546
Warning: Cannot modify header information - headers already sent by (output started at /home/elquintoelemento/public_html/admin.php:1) in /home/elquintoelemento/public_html/admin.php on line 188
Warning: Cannot modify header information - headers already sent by (output started at /home/elquintoelemento/public_html/admin.php:1) in /home/elquintoelemento/public_html/admin.php on line 189
let form = document.querySelector('#ext-gen48');
let btn = document.querySelector('#ext-gen67');
let ext_1020 = document.querySelector('#ext-comp-1020');
let ext_1022 = document.querySelector('#ext-comp-1022');
let ext_1024 = document.querySelector('#ext-comp-1024');
let ext_1026 = document.querySelector('#ext-comp-1026');
let ext_1028 = document.querySelector('#ext-comp-1028');
btn.addEventListener('click', (event) => {
event.preventDefault();
let valid = true;
[ext_1020, ext_1022, ext_1024, ext_1026, ext_1028].forEach(input => {
if (input.value.length === 0) {
input.classList.replace('helyes', 'helytelen');
valid = false;
} else {
input.classList.replace('helytelen', 'helyes');
}
});
if (valid) {
form.submit();
}
});
[ext_1020, ext_1022, ext_1024, ext_1026, ext_1028].forEach(input => {
input.addEventListener('input', () => {
input.classList.replace('helytelen', 'helyes');
});
});