-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
50 lines (43 loc) · 1.66 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
window.onload = function() {
// Defina a senha esperada
const senhaEsperada = "1234"; // Substitua pela senha real do banco de dados
// Pede a senha ao usuário
let senha = prompt("Digite a senha:");
// Verifica se a senha é válida
while (senha !== senhaEsperada) {
senha = prompt("Senha incorreta. Por favor, tente novamente:");
}
// Autoriza apenas nomes válidos
const form = document.querySelector('form');
form.addEventListener('submit', function(event) {
const nome = document.querySelector("input[name='fiscal']").value;
if (!nome || nome.trim().length === 0) {
alert('Por favor, insira um nome válido.');
event.preventDefault();
}
const turnos = document.querySelectorAll("input[name='turno']");
const turnoValido = [...turnos].some(turno => turno.checked);
if (!turnoValido) {
alert('Por favor, selecione um dos turnos.');
event.preventDefault();
}
});
// Verifica a quantidade de gabinetes
const quant1gabInput = document.querySelector("input[name='quant1gab']");
quant1gabInput.addEventListener("input", function(event) {
if (event.target.value > 20) {
event.target.value = 20;
} else if (event.target.value < 0) {
event.target.value = 0;
}
});
// Verifica a quantidade de monitores
const quant2lcdInput = document.querySelector("input[name='quant2lcd']");
quant2lcdInput.addEventListener("input", function(event) {
if (event.target.value > 20) {
event.target.value = 20;
} else if (event.target.value < 0) {
event.target.value = 0;
}
});
};