|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/logicswapweb/aplicaciones/admon/ |
Upload File : |
<?php
include('./fnc/DBConnect.php');
include('./fnc/utileria.php');
include('./fnc/componente.php');
include('./fnc/parametro.php');
include('./fnc/vinculo.php');
include('./fnc/UsuarioPanel.php');
include('./fnc/bitacora.php');
include('./fnc/aplicacion.php');
include('./fnc/panel.php');
session_start('PanelAzulDigial');
if(!session_is_registered("panel")){
echo "<div style=\" font-family: Verdana, Arial, Helvetica, sans-serif; color: #0066CC; font-size: 16px;font-weight: bolder;\">Usuario Invalido</div>";
}else{
$panel->aplicativo=new Aplicacion();
$util = new Utileria();
$fecha = $util->fecha(false);
$panel->reactivarDB();
$panel->setFilesPanel(3);
$user = (array_key_exists('user', $_REQUEST)) ? $_REQUEST['user']: NULL;
if(!empty($user)){
$panel->usuario->cargarUsuario($user);
}
?>
<html>
<head>
<title>Control Panel</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="css/panel2.css" rel="stylesheet" type="text/css">
<link href="css/panel2Contenido.css" rel="stylesheet" type="text/css">
<link href="css/scrollbar.css" rel="stylesheet" type="text/css">
<link href="css/scrollbar2.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style></head>
<body>
<table width="780" border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td width="220" height="113" valign="bottom" background="img/fondo_t.gif" class="migasactivo"><table width="220" border="0" bgcolor="#FFFFFF">
<tr>
<td><table width="143" border="0">
<tr>
<td ><div align="left"></div></td>
</tr>
<tr>
<td ><div align="left" class="texto1">Configuration</div></td>
</tr>
</table></td>
</tr>
</table></td>
<td width="560" valign="top" background="img/fondo_s.gif"><table width="560" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="140" class="boton3"> </td>
<td width="60" class="texto1"> </td>
<td class="fecha" align="right" valign="middle">
<?=$fecha?>
</td>
<td width="40" class="texto1"> </td>
</tr>
<tr>
<td class="boton4">User:</td>
<td colspan="3" class="texto1"><strong>
<?=ucfirst($panel->usuario->nombres)?>
<?=ucfirst($panel->usuario->apellidos)?>
</strong></td>
</tr>
<tr>
<td class="boton3"> </td>
<td colspan="3" valign="bottom" class="texto1"> </td>
</tr>
<tr>
<td class="boton4">Registered to:</td>
<td colspan="3" valign="bottom" class="texto1"><strong>
<?=$panel->parametros['cliente']?>
</strong></td>
</tr>
</table>
<table width="560" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td width="90"><a href="contenido.php" target="contenido" class="usuario">Start</a></td>
<td width="90"><a href="javascript: window.open('../../fnc/main.php?tarea=salir','_parent')" class="usuario" >Exit</a></td>
<td width="90"> </td>
<td width="90"> </td>
<td width="90"> </td>
<td width="90"> </td>
<td> </td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>
<? }?>