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
+153
View File
@@ -0,0 +1,153 @@
<html>
<head>
<title>Acceso a Tarisan</title>
<link rel="STYLESHEET" type="text/css" href="../css/estilos.css">
<link rel="shortcut icon" type="image/x-icon" href="../img/logo.ico" />
</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.USUARIO.value = document.login.USUARIO.value.trim();
document.login.CLAVE.value = document.login.CLAVE.value.trim();*/
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();
}
}
function clear(){
var texto = document.getElementById('usrtxt');
texto.value ="";
texto.setAttribute("autocomplete", "off");
texto = document.getElementById('pwdtxt');
texto.value="";
texto.setAttribute("autocomplete", "off");
document.login.USUARIO.focus();
}
function SePulsaEnter(event) {
if (event.which == 13 && !event.shiftKey) {
event.preventDefault();
entrar();
}
}
//-->
</script>
<body bgcolor="#FFFFFF" onLoad="clear();" style="background-color:#FFFFFF">
<form name="login" method="post" action="../servlet/Login" autocomplete="off">
<table width="760" border="0" align="center"><tr>
<td align="center">
<table><tr><td><img src="../img/Logo_rosca_login.jpg" alt="IMQ de Navarra" name="logotipo" id="logotipo" width="425" height="425" 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" id="usrtxt" value="" class="txt">
</td>
</tr>
<tr>
<td class="txtnegrita">Clave:&nbsp;</td>
<td>
<input type="password" name="CLAVE" id="pwdtxt" value="" class="txt" onkeypress="SePulsaEnter(event)">
</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>
<tr>
<td align="center">
<div id="thawteseal" style="text-align:center;" title="Click to Verify - This site chose Thawte SSL for secure e-commerce and confidential communications.">
<div><script type="text/javascript" src="https://seal.thawte.com/getthawteseal?host_name=tarisan.imqnavarra.com&amp;size=S&amp;lang=es"></script></div>
<div><a href="http://www.thawte.com/products/" target="_blank" style="color:#000000; text-decoration:none; font:bold 10px arial,sans-serif; margin:0px; padding:0px;">Acerca de los certificados SSL</a></div>
</div>
</td>
</tr>
</table>
</td>
</tr></table>
</form>
</body>
</html>