Logo CEWEB.br Logo NIC.br Logo CGI.br
Home Sobre o projeto

Sites Pertecentes a (o) RN

Endereço Nota Erros Avisos

servicos.searh.rn.gov.br/fpganteriores/Index.asp

66.13 11 23
Recomendações Avaliadas
1.1 Respeitar os Padrões Web.

Recomendações

Número Descrição Quantidade Linhas Código Fonte
1.1.6 Presença de javascript(s) interno 1 6
6 <![CDATA[<script> function validamat() { var matric = document.frmLogin.txtUserId.value; var senha = document.frmLogin.txtPassword.value; var numeros = "1234567890"; var letras = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; var w; if (matric.length == 0) { //if ((frmLogin.txtUserId.value == "")) { alert("Informe a matricula."); document.frmLogin.txtUserId.focus(); document.frmLogin.txtUserId.select(); return false; } if (isNaN (matric)) { alert("A matricula deve ser composta apenas por numeros !") document.frmLogin.txtUserId.focus(); document.frmLogin.txtUserId.select(); return false; } if (senha.length == 0) { //if ((frmLogin.txtPassword.value == "")) { alert("Informe a senha."); document.frmLogin.txtPassword.focus(); document.frmLogin.txtPassword.select(); return false; } if (senha.length < 3) { alert("A senha deve conter no minimo 3 caracteres."); document.frmLogin.txtPassword.focus(); document.frmLogin.txtPassword.select(); return false; } else { for (var i = 0; i < matric.length; i++) { w = senha.charAt(i).toUpperCase(); if ((numeros.indexOf (w) == -1) && (letras.indexOf (w) == -1)) { alert ("O caracter: '" + w + "' nao pode constar na senha."); document.frmLogin.txtPassword.focus(); document.frmLogin.txtPassword.select(); return false; } } } return true; } </script>]]>