| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /*
- Sistema de Portales de Soler y Palau SA de CV
- (2017) Desarrollos y Servicios en Tecnología Inteligente S de RL de CV
- Versión 1.0
- Última Actualización: 27/12/2020
- Código del Módulo: GAS000
- */
- $strModulo = 'Planta_Mantenimiento';
- require_once('shared/iniciaSesion.php');
- // Para acceder a esta página el usuario debe tener un login válido
- require_once('shared/sesionIniciada.php');
- $strAppModulo = '';
- ?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta http-equiv="imagetoolbar" content="no" />
- <link media="screen" rel="stylesheet" type="text/css" href="css/principal.css" />
- <link rel="shortcut icon" type="image/x-icon" href="css/layout/global/sp.ico" />
- </head>
- <body class="claro">
- <div id="wrapper">
- <div id="wrapper_container">
- <table width="100%" height="100%">
- <tr height="100%">
- <td width="180px" height="100%"><iframe name="app_menu" src="menuIzquierdo.php" width="100%" height="100%" frameborder="0" scrolling="no"></iframe></td>
- <td height="100%"><iframe name="app_modulo" src="<?php echo($strAppModulo); ?>" width="100%" height="100%" frameborder="0" scrolling="auto"></iframe></td>
- </tr>
- </table>
- </div>
- </div>
- </body>
- </html>
|