blob: 805ed60fd4bfd1ec89778ee88a01fe6c0ae6b357 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
<?php
// *************************************************************************
// Aplicación WEB: ogAdmWebCon
// Autor: José Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla
// Fecha Creación: Año 2009-2010
// Fecha útima modificación: Marzo-2006
// Nombre del fichero: menubrowser.php
// Descripción :
// Este fichero implementa el menu del browser de los clientes
// ****************************************************************************
// Recupera la IP del ordenador que solicita la página
$iph=tomaIP();
if(!empty($iph)){
Header("Location:../controlpostacceso.php?iph=".$iph); // Accede a la p�ina de menus
exit;
}
?>
<HTML>
<HEAD>
<TITLE>Administración web de aulas</TITLE>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<link rel="stylesheet" type="text/css" href="estilos.css">
<SCRIPT LANGUAGE="JAVASCRIPT">
//________________________________________________________________________________________________________
function confirmar(){
if (comprobar_datos())
document.fdatos.submit();
}
//________________________________________________________________________________________________________
function comprobar_datos(){
if (document.fdatos.usu.value==""){
alert("Debe introducir un nombre de Usuario");
document.fdatos.usu.focus();
return(false)
}
if (document.fdatos.pss.value==""){
alert("Debe introducir una contraseña");
document.fdatos.pss.focus();
return(false)
}
return(true)
}
//______________________________________________________________________________________________________
function PulsaEnter(oEvento){
var iAscii;
if (oEvento.keyCode)
iAscii = oEvento.keyCode;
else{
if (oEvento.which)
iAscii = oEvento.which;
else
return false;
}
if (iAscii == 13) confirmar();
return true;
}
//________________________________________________________________________________________________________
</SCRIPT>
</HEAD>
<BODY>
<DIV style="POSITION:absolute;top:20;left:150">
<FORM action="controlacceso.php" name="fdatos" method="post"></FORM>
</DIV>
</BODY>
</HTML>
<?php
//___________________________________________________________________________________________________
//
// Redupera la ip del cliente web
//___________________________________________________________________________________________________
function tomaIP(){
// Se asegura que la pagina se solicita desde la IP que viene
global $HTTP_SERVER_VARS;
if ($HTTP_SERVER_VARS["HTTP_X_FORWARDED_FOR"] != "")
$ipcliente = $HTTP_SERVER_VARS["HTTP_X_FORWARDED_FOR"];
else
$ipcliente = $HTTP_SERVER_VARS["REMOTE_ADDR"];
if (empty ($ipcliente))
$ipcliente = $_SERVER["REMOTE_ADDR"];
return($ipcliente);
}
?>
|