-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
32 lines (27 loc) · 953 Bytes
/
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
document.onreadystatechange = function () {
setTimeout(function(){
document.getElementById('load').style.visibility="hidden";
},2000);
}
function limparCamposLogin(){
document.getElementById('login').value = null;
document.getElementById('senha').value = null;
}
function limparCamposCadastro(){
document.getElementById('nome').value = null;
document.getElementById('rg').value = null;
document.getElementById('nomePai').value = null;
document.getElementById('telefone').value = null;
document.getElementById('email').value = null;
document.getElementById('nascimento').value = null;
document.getElementById('cpf').value = null;
document.getElementById('nomeMae').value = null;
document.getElementById('profissao').value = null;
document.getElementById('celular').value = null;
document.getElementById('escolaridade').value = null;
}
function voltar(){
window.location.href = 'page_logado.php';
}
function apagar(){
}