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ín - Área de administració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">¡¡¡
Acceso Autorizado ¡¡¡</font></div></td>
</tr>
<tr>
<td colspan="2"> <div align="center"> </div></td>
</tr>
<tr>
<td colspan="2"> <div align="center">Bienvenid@ a Galopín <font color="cc0000"><? echo $_SESSION['usuario_login'] ?></font></div></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td width="244"><font color="#CC0000">Datos de acceso:</font></td>
<td width="110"><font color="#cc0000">¿ Que desea hacer hoy ?</font></td>
</tr>
<tr>
<td width="244"> ID Usuario: <font color="cc0000"><? echo $_SESSION['usuario_id'] ?></font><br>
Identificación: <font color="cc0000"><? echo $_SESSION['usuario_login'] ?></font><br>
Nivel de Acceso: <font color="cc0000">
<? if ($_SESSION['usuario_nivel']==0) { echo "Administrador"; } else { echo "Usuario"; }
?>
</font> <br> </td>
<td width="110"> <br>
<br>
<a href="index2.php">Entrar al sistema de facturación</a><br> <br>
<? if ($_SESSION['usuario_nivel']==0)
{?>
<a href="aut_gestion_usuarios.php">Gestionar acceso de usuarios </a>
<? }
?>
<br> <br></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td colspan="2"><div align="center"> <a href="index.php">Salir del control
de acceso</a> </div></td>
</tr>
</table>
</body>
</html>
|