This repository has been archived by the owner on Apr 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
script.js
65 lines (57 loc) · 1.76 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/* Função para aceitar somente números nos inputs */
function isNumber(evt) {
evt = (evt) ? evt : window.event;
let charCode = (evt.which) ? evt.which : evt.keyCode;
if (charCode > 31 && (charCode < 48 || charCode > 57)) {
return false;
}
return true;
}
/* números e ponto*/
function isNumberAndDot(evt) {
evt = (evt) ? evt : window.event;
let charCode = (evt.which) ? evt.which : evt.keyCode;
if(charCode === 46) {
return true;
}
if (charCode > 31 && (charCode < 48 || charCode > 57)) {
return false;
}
return true;
}
/* Enviar formulário com tecla Enter */
document.addEventListener('keydown', function(e) {
if(e.key === 'Enter'){
document.getElementById("submitWithEnter").click();
}
});
/* Confirmar logout*/
function confirmlogout(x) {
if (confirm("Tem certeza que deseja fazer logout?")) {
location.href= x ;
}
}
/* Confirmar exclusão do analista */
function confirmremove(x) {
if (confirm("Tem certeza que deseja excluir sua conta?")) {
location.href= "removerAnalista.php"+ x ;
}
}
/** Confere se a senha e confirmacao de senha sao iguais */
function validadePassoword() {
let senha = document.getElementById('senha');
let senhaC = document.getElementById('senha-confirma');
function validarSenha() {
if (senha.value != senhaC.value) {
senhaC.setCustomValidity("Senhas diferentes!");
senhaC.reportValidity();
return false;
} else {
senhaC.setCustomValidity("");
return true;
}
}
validarSenha();
// verificar também quando o campo for modificado, para que a mensagem suma quando as senhas forem iguais
senhaC.addEventListener('input', validarSenha);
}