source: admin/WebConsole/pagerror.php @ 3fef8e1

918-git-images-111dconfigfileconfigure-oglivegit-imageslgromero-new-oglivemainmaint-cronmount-efivarfsmultivmmultivm-ogboot-installerogClonningEngineogboot-installer-jenkinsoglive-ipv6test-python-scriptsticket-301ticket-50ticket-50-oldticket-577ticket-585ticket-611ticket-612ticket-693ticket-700ubu24tplunification2use-local-agent-oglivevarios-instalacionwebconsole3
Last change on this file since 3fef8e1 was a6b881e, checked in by alonso <alonso@…>, 15 years ago

primeros archivos de administración

git-svn-id: https://opengnsys.es/svn/trunk@520 a21b9725-9963-47de-94b9-378ad31fedc9

  • Property mode set to 100644
File size: 1.5 KB
Line 
1<?
2// *************************************************************************************************************************************************
3// Aplicación WEB: ogAdmWebCon
4// Autor: José Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla
5// Fecha Creación: Diciembre-2003
6// Fecha Última modificación: Febrero-2005
7// Nombre del fichero: controlacceso.php
8// Descripción :Este fichero implementa el control de acceso a la Aplicación en todas las p�inas
9// *************************************************************************************************************************************************
10include_once("./includes/ctrlacc.php");
11//________________________________________________________________________________________________________
12$herror=0;
13if (isset($_GET["herror"])) $herror=$_GET["herror"];
14//________________________________________________________________________________________________________
15?>
16<HTML>
17        <TITLE> Administración web de aulas</TITLE>
18        <HEAD>
19        <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
20                <LINK rel="stylesheet" type="text/css" href="estilos.css">
21        </HEAD>
22        <BODY>
23                <?
24                        echo '<SCRIPT LANGUAGE="JAVASCRIPT">'.chr(13);
25                        echo '  var o=window.top;'.chr(13);
26                        echo '  var ao=o.parent;'.chr(13);
27                        echo '  while (o!=ao){ // Busca la primera ventana del navegador'.chr(13);
28                        echo '   ao=o;'.chr(13);
29                        echo '   o=o.parent;';
30                        echo '   };'.chr(13);
31                        echo '  ao.location="'.$urlacceso.'?herror='.$herror.'";'.chr(13);
32                        echo '</SCRIPT>'.chr(13);
33                ?>
34        </BODY>
35</HTML>
Note: See TracBrowser for help on using the repository browser.