summaryrefslogtreecommitdiffstatsabout
path: root/entrada.php
blob: 32f356a941648efd57bcb5b6fe9ae0db7a316a6a (plain)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?
require("aut_verifica.inc.php");
$nivel_acceso=10; 
if ($nivel_acceso <= $_SESSION['usuario_nivel']){
header ("Location: $redir?error_login=5");
exit;
}
?>
<html>
<title>Galop&iacute;n - &Aacute;rea de administraci&oacute;n</title>
<link href="estilo.css" rel="stylesheet" type="text/css">
<body leftmargin="0" topmargin="0">
<div align="center"> <img src="images/gestionusuarios/superior.jpg" width="800" height="136"> 
  <br>
  <br>
  <img src="images/gestionusuarios/gestionusuarios.jpg" width="293" height="49"><br>
  <br>
</div>
<table border="0" align="center">
  <tr> 
    <td colspan="2"><div align="center"><font color="#CC0000" size="3">&iexcl;&iexcl;&iexcl; 
        Acceso Autorizado &iexcl;&iexcl;&iexcl;</font></div></td>
  </tr>
  <tr> 
    <td colspan="2"> <div align="center">&nbsp;</div></td>
  </tr>
  <tr> 
    <td colspan="2"> <div align="center">Bienvenid@&nbsp;a&nbsp;Galop&iacute;n&nbsp;<font color="cc0000"><? echo $_SESSION['usuario_login'] ?></font></div></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr> 
    <td width="244"><font color="#CC0000">Datos de acceso:</font></td>
    <td width="110"><font color="#cc0000">&iquest; Que desea hacer hoy&nbsp;?</font></td>
  </tr>
  <tr> 
    <td width="244"> &nbsp;ID&nbsp;Usuario:&nbsp;<font color="cc0000"><? echo $_SESSION['usuario_id'] ?></font><br> 
      &nbsp;Identificaci&oacute;n:&nbsp;<font color="cc0000"><? echo $_SESSION['usuario_login'] ?></font><br> 
      &nbsp;Nivel&nbsp;de&nbsp;Acceso:&nbsp; <font color="cc0000"> 
      <? if ($_SESSION['usuario_nivel']==0) { echo "Administrador"; } else { echo "Usuario"; }
	  ?>
      </font> <br> </td>
    <td width="110"> &nbsp; <br>
      <br>
      &nbsp;<a href="index2.php">Entrar al sistema de facturaci&oacute;n</a><br> <br>
	  <? if ($_SESSION['usuario_nivel']==0)
	  {?>
      &nbsp;<a href="aut_gestion_usuarios.php">Gestionar acceso de usuarios </a> 
	  <? }
	  ?>
      <br> <br></td>
  </tr>
  <tr> 
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr> 
    <td colspan="2"><div align="center">&nbsp;<a href="index.php">Salir del control 
        de acceso</a>&nbsp;</div></td>
  </tr>
</table>
</body>
</html>