Añado html

This commit is contained in:
2025-06-09 13:37:51 +02:00
parent a97a6350ee
commit aabf3ad038
10 changed files with 987 additions and 0 deletions
+123
View File
@@ -0,0 +1,123 @@
<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>&nbsp;</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:&nbsp;</td>
<td>
<input type="text" name="USUARIO" value="" class="txt">
</td>
</tr>
<tr>
<td class="txtnegrita">Clave:&nbsp;</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>