-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
42 lines (32 loc) · 1.04 KB
/
Copy pathindex.php
File metadata and controls
42 lines (32 loc) · 1.04 KB
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
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Cargando...</title>
<link rel="stylesheet" type="text/css" href="estilos/estilo_general.css">
<link rel="stylesheet" type="text/css" href="estilos/hover_master.css">
<link rel="stylesheet" type="text/css" href="estilos/buttons.css">
</head>
<body>
<form name="form1" method="post" action="">
<table width="100%" border="0" cellspacing="0" cellpadding="10">
<tr>
<td align="center"><p class="Estilo15"> </p>
<p class="Estilo15"> </p>
<p class="Estilo15"> </p>
<p class="Estilo18"><span class="Estilo17">
<img src="imagenes/sistema/preloader_0.gif" title="Cargando" alt="Cargando" /> </span></p></td>
</tr>
</table>
<input type="hidden" name="cod_navegacion">
</form>
<script>
cargar()
function cargar(){
f = document.form1;
f.action = "php/plantilla/ver_validar_usuario.php";
f.submit();
}
</script>
</body>
</html>