124 lines
5.0 KiB
HTML
124 lines
5.0 KiB
HTML
<html>
|
|
<head>
|
|
<title>Acceso a Tarisan</title>
|
|
<link rel="STYLESHEET" type="text/css" href="../css/estilos.css">
|
|
</head>
|
|
<script language="javascript">
|
|
<!--
|
|
|
|
function capitalizarUsuario()
|
|
{
|
|
var usr = document.login.USUARIO.value;
|
|
usr = usr.toUpperCase();
|
|
document.login.USUARIO.value = usr;
|
|
}
|
|
|
|
function entrar()
|
|
{
|
|
if(document.login.USUARIO.value != "")
|
|
{
|
|
if(document.login.CLAVE.value != "")
|
|
{
|
|
document.login.submit();
|
|
}
|
|
else
|
|
{
|
|
alert("Tiene que introducir su Usuario y Clave");
|
|
document.login.CLAVE.focus();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
alert("Tiene que introducir Usuario y Clave");
|
|
document.login.USUARIO.focus();
|
|
}
|
|
}
|
|
|
|
//-->
|
|
</script>
|
|
|
|
<body bgcolor="#FFFFFF" onLoad="document.login.USUARIO.focus();">
|
|
<form name="login" method="post" action="../servlet/Login" >
|
|
<table width="760" border="0" align="center"><tr>
|
|
<td align="center">
|
|
<table><tr><td><img src="../img/Logo_rosca.jpg" alt="IMQ de Navarra" name="logotipo" id="logotipo" width="465" height="76" border="0"></td></tr></table>
|
|
<table border="0" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td>
|
|
<p> </p>
|
|
<p class="titulo">Acceso</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<table border="0" cellspacing="0" cellpadding="0" bgcolor="CDDAE2" align="center">
|
|
<tr>
|
|
<td width="1" height="1"><img src="../img/transparent.gif" width="1" height="1"></td>
|
|
<td background="../img/blancoAzul.gif"><img src="../img/transparent.gif" width="1" height="1"></td>
|
|
<td width="1" height="1"><img src="../img/transparent.gif" width="1" height="1"></td>
|
|
</tr>
|
|
<tr>
|
|
<td background="../img/blancoAzul.gif"><img src="../img/transparent.gif" width="1" height="1"></td>
|
|
<td>
|
|
<table width="100%" border="0" cellspacing="10" cellpadding="10">
|
|
<tr>
|
|
<td>
|
|
<table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="CDDAE2">
|
|
<tr>
|
|
<td width="1" height="1"><img src="../img/transparent.gif" width="1" height="1"></td>
|
|
<td background="../img/blancoAzul.gif"><img src="../img/transparent.gif" width="1" height="1"></td>
|
|
<td width="1" height="1"><img src="../img/transparent.gif" width="1" height="1"></td>
|
|
</tr>
|
|
<tr>
|
|
<td background="../img/blancoAzul.gif"><img src="../img/transparent.gif" width="1" height="1"></td>
|
|
<td align="center">
|
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td class="txtnegrita">Usuario: </td>
|
|
<td>
|
|
<input type="text" name="USUARIO" value="" class="txt">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="txtnegrita">Clave: </td>
|
|
<td>
|
|
<input type="password" name="CLAVE" value="" class="txt">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
<td background="../img/blancoAzul.gif"><img src="../img/transparent.gif" width="1" height="1"></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="1" height="1"><img src="../img/transparent.gif" width="1" height="1"></td>
|
|
<td background="../img/blancoAzul.gif"><img src="../img/transparent.gif" width="1" height="1"></td>
|
|
<td width="1" height="1"><img src="../img/transparent.gif" width="1" height="1"></td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table></td>
|
|
|
|
<td background="../img/blancoAzul.gif"><img src="../img/transparent.gif" width="1" height="1"></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="1" height="1"><img src="../img/transparent.gif" width="1" height="1"></td>
|
|
<td height="1" background="../img/blancoAzul.gif"><img src="../img/transparent.gif" width="1" height="1"></td>
|
|
<td width="1" height="1"><img src="../img/transparent.gif" width="1" height="1"></td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td align="center">
|
|
<a href="javascript:entrar();" class="enlace" onMouseOver="self.status='Validar Usuario'; return true;" onMouseOut="self.status=''; return true;">Entrar</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr></table>
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|