acceso_principal.php 1.4 KB

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