|
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/componente.php');
include('./fnc/parametro.php');
include('./fnc/vinculo.php');
include('./fnc/UsuarioPanel.php');
include('./fnc/aplicacion.php');
include('./fnc/bitacora.php');
include('./fnc/panel.php');
session_start('PanelAzulDigial');
if(!isset($_SESSION['panel'])){
echo "<div style=\" font-family: Verdana, Arial, Helvetica, sans-serif; color: #ff4455; font-size: 16px;font-weight: bolder;\">Usuario Invalido</div>";
echo "<div style=\" font-family: Verdana, Arial, Helvetica, sans-serif; color: #0066CC; font-size: 16px;font-weight: bolder;\"><a href=\"../../index.php\" target=\"_top\">Iniciar sesión nuevamente</a></div>";
echo "<script>window.open('../index.php','_top
')</script>";
}else{
$panel->aplicativo = new Aplicacion();
$panel->reactivarDB();
$panel->setFilesPanel(3);
$tipo_u=$panel->usuario->tipo;
$user_u=$panel->usuario->id;
$estado_u=$panel->usuario->estado;
?>
<html>
<head>
<title>Control Panel</title>
<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">
<script>
if (history.forward(1)){location.replace(history.forward(1))}
</script>
<style type="text/css">
<!--
body {
margin-left: 10px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style>
</head>
<body>
<table width="620" border="0">
<tr>
<td>
<marquee direction="left" behavior="slide" truespeed="truespeed" class="menu2" >
Welcome to your administration panel
</marquee></td>
</tr>
<tr>
<td><? $panel->cargarContenido($tipo_u,$user_u,$estado_u,5);?> </td>
</tr>
</table>
</body>
</html>
<? }?>