Subversion Repositories ALCASAR

Rev

Rev 1987 | Rev 1989 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
452 richard 1
<?php
958 franck 2
# $Id: index.php 1988 2016-07-13 14:16:37Z raphael.pion $
1249 richard 3
#
1987 richard 4
# index.php for ALCASAR
1249 richard 5
# by REXY
6
# UI & css style by stephane ERARD
7
# The contents of this file may be used under the terms of the GNU
8
# General Public License Version 2, provided that the above copyright
9
# notice and this permission notice is included in all copies or
10
# substantial portions of the software.
11
/****************************************************************
12
*			GLOBAL FILE PATHS			*
13
*****************************************************************/
14
define ("CONF_FILE", "/usr/local/etc/alcasar.conf");
15
 
16
/****************************************************************
17
*			FILE reading test			*
18
*****************************************************************/
19
$conf_files=array(CONF_FILE);
20
foreach ($conf_files as $file){
21
	if (!file_exists($file)){
22
		exit("File ".$file." unknown");
23
	}
24
	if (!is_readable($file)){
25
		exit("You don't have read rights on the file ".$file);
26
	}
27
}
28
/****************************************************************
29
*			Read CONF_FILE				*
30
*****************************************************************/
31
$ouvre=fopen(CONF_FILE,"r");
32
if ($ouvre){
33
	while (!feof ($ouvre))
34
	{
35
		$tampon = fgets($ouvre, 4096);
36
		if (strpos($tampon,"=")!==false){
37
			$tmp = explode("=",$tampon);
38
			$conf[$tmp[0]] = $tmp[1];
39
		}
40
	}
41
}else{
42
	exit("Error opening the file ".CONF_FILE);
43
}
44
fclose($ouvre);
1345 richard 45
$organisme = trim($conf["ORGANISM"]);
46
$domainname = trim($conf["DOMAIN"]);
47
$hostname = "alcasar.".$domainname;
784 richard 48
$network_pb = False;
1249 richard 49
$cert_add = "http://$hostname/certs";
360 richard 50
$direct_access = False;
832 richard 51
$diagnostic = "can't contact the default router";
1452 richard 52
$remote_ip = preg_match('#^([0-9]{1,3}\.){3}[0-9]{1,3}$#', $_SERVER['REMOTE_ADDR']) ? $_SERVER['REMOTE_ADDR'] : "";
363 richard 53
$tab = array();$user = array();
566 stephane 54
$connection_history =  "";
55
$nb_connection_history = 3;
56
 
1987 richard 57
# Retrieve the user info behind the remote ip
1818 raphael.pi 58
exec ("sudo /usr/sbin/chilli_query list|grep $remote_ip" , $tab);
59
$user = explode (" ", $tab[0]);
1820 raphael.pi 60
 
1987 richard 61
# cleaning the cache
1978 raphael.pi 62
header("Expires: Tue, 01 Jan 2000 00:00:00 GMT");
63
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
64
header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
65
header("Cache-Control: post-check=0, pre-check=0", false);
66
header("Pragma: no-cache");
67
 
68
 
1987 richard 69
# Test if it'a direct connexion to ALCASAR
1878 raphael.pi 70
if (isset($_SERVER['HTTP_HOST']) && (($_SERVER['HTTP_HOST'] == $_SERVER['SERVER_ADDR']) || preg_match ("/^alcasar$/", $_SERVER['HTTP_HOST']) || preg_match ("/^$hostname$/", $_SERVER['HTTP_HOST']) || preg_match ("/^$organisme$/", $_SERVER['HTTP_HOST'])))
522 richard 71
	{
72
	$direct_access=True;
73
	}
1987 richard 74
# Function to adapt time connexion in seconds to H,M,S
566 stephane 75
function secondsToDuration($seconds = null){
76
	if ($seconds == null) return "";
509 richard 77
 
566 stephane 78
	$temp = $seconds % 3600;
79
	$time[0] = ( $seconds - $temp ) / 3600 ;	// hours
732 richard 80
	$time[2] = $temp % 60 ;				// seconds
566 stephane 81
	$time[1] = ( $temp - $time[2] ) / 60;		// minutes
82
 
732 richard 83
	return $time[0]." h ".$time[1]." m ".$time[2]." s";
566 stephane 84
}
509 richard 85
 
1987 richard 86
# If the user is connected : retrieve the 3 last connexions
783 richard 87
if ((isset ($user[4])) && ($user[4] != "0")){
566 stephane 88
	if ((is_file("./acc/manager/lib/sql/drivers/mysql/functions.php"))&&(is_file("/etc/freeradius-web/config.php"))){
89
		include_once("/etc/freeradius-web/config.php");
90
		include_once("./acc/manager/lib/sql/drivers/mysql/functions.php");
91
		$sql = "SELECT UserName, AcctStartTime, AcctStopTime, acctsessiontime FROM radacct WHERE UserName='$user[5]' ORDER BY AcctStartTime DESC LIMIT 0 , $nb_connection_history";
92
		$link = @da_sql_pconnect($config); // on affiche pas les erreurs
93
		if ($link){
94
			$res = @da_sql_query($link,$config,$sql); // on affiche pas les erreurs
95
 
96
			if ($res){
97
				$connection_history.= "<ul>";
98
				while(($row = @da_sql_fetch_array($res,$config))){
99
					$connected = "";
1987 richard 100
					if ($row['acctstoptime'] == "") $connected = " (active)";
1678 richard 101
					$connection_history.="<li title='$row[username] $row[acctstarttime] $row[acctstoptime] (".secondsToDuration($row['acctsessiontime']).")'>$row[acctstarttime] (".secondsToDuration($row['acctsessiontime']).") $connected</li>";
566 stephane 102
				}
103
				$connection_history.="</ul>";
104
			}
105
		}
106
	}
107
}
1818 raphael.pi 108
else
109
{
1987 richard 110
	# the user isn't connected and he isn't in the ipset "not_auth_yet" yet 
1978 raphael.pi 111
	exec("sudo /usr/sbin/ipset list not_auth_yet | grep $remote_ip | wc -l 2>&1", $ipset_not_auth_yet);
112
	if(!$direct_access && $ipset_not_auth_yet[0] == '0')
1818 raphael.pi 113
	{
1987 richard 114
		exec("sudo /usr/sbin/ipset add not_auth_yet $remote_ip"); # Add in the ipset "not_auth_yet" to not loop when redirected
1988 raphael.pi 115
	        if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on")
116
	        {
117
	                header("Location: http://$_SERVER[HTTP_HOST]");
118
	        }
119
	        else
120
	        {
121
	                echo "<script>window.location.reload(true)</script>"; # the user web browser need to perform a new DNS request when redirected (as in a "<CTRL>+F5")
122
	                echo "<script>window.location.href='http://$_SERVER[HTTP_HOST]'</script>"; 
123
	        }
124
	        exit; 
1818 raphael.pi 125
	}
1988 raphael.pi 126
 
127
 
1818 raphael.pi 128
}
509 richard 129
 
360 richard 130
# Choice of language
131
$Language = 'en';
132
if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])){
133
  $Langue = explode(",",$_SERVER['HTTP_ACCEPT_LANGUAGE']);
134
  $Language = strtolower(substr(chop($Langue[0]),0,2)); }
135
if($Language == 'fr'){
136
  $l_access_denied = "ACC&Egrave;S REFUS&Eacute;";
399 franck 137
  $l_access_welcome = "Bienvenue sur ALCASAR";
360 richard 138
  $l_access_unavailable = "ACC&Egrave;S INDISPONIBLE";
139
  $l_required_domain = "Site WEB demand&eacute;";
1504 richard 140
  $l_explain_acc_access = "Le centre de gestion permet d'administrer le portail. Vous devez poss&eacute;der un compte d'administration ou de gestion pour y acc&eacute;der.";
360 richard 141
  $l_explain_access_deny = "Vous tentez d'acc&eacute;der &agrave; une ressource dont le contenu est r&eacute;put&eacute; contenir des informations inappropri&eacute;es.";
142
  $l_explain_net_pb = "Votre portail d&eacute;tecte que l'acc&egrave;s &agrave; Internet est indisponible.";
143
  $l_contact_access_deny = "Contactez le responsable de la s&eacute;curit&eacute; (OSSI/RSSI) si vous pensez que ce filtrage est abusif.";
509 richard 144
  $l_contact_net_pb = "Contactez votre responsable informatique ou votre prestataire Internet pour plus d'information.";
399 franck 145
  $l_welcome = "Page principale de votre portail captif";
1452 richard 146
  $l_sms_access = "<a href=\"https://$hostname/autoregistrationinfo.php\">Auto Enregistrement par SMS</a>";
1830 raphael.pi 147
  $l_install_certif = "<a href=\"$cert_add/certificat_alcasar_ca.der\">Installer le certificat racine</a>";
148
  $l_install_certif_more = "<a href=\"$cert_add/certificat_alcasar_ca.der\">Installation du certificat de l'autorit&eacute; racine d'ALCASAR</a>";
536 franck 149
  $l_certif_explain = "Permet l'&eacute;change de donn&eacute;es s&eacute;curis&eacute;es entre votre station de consultation et le portail captif ALCASAR.<BR>Si ce certificat n'est pas enregistr&eacute; sur votre station de consultation, il est possible que des alertes de s&eacute;curit&eacute;s soient &eacute;mises par votre navigateur.<br><br>";
688 richard 150
  $l_certif_explain_help = "<a href=\"alcasar-certificat.pdf\" target=\"_blank\">Aide complémentaire</a>";
1124 crox53 151
  $l_category = "catégorie :";
832 richard 152
if ((isset ($user[4])) && ($user[4] == "0")) {
509 richard 153
	  $l_logout_explain = "Aucune session de consultation Internet n'est actuellement ouverte sur votre syst&egrave;me.";
1822 raphael.pi 154
	  $l_logout = "<a href=\"http://www.google.com\">Ouvrir une session Internet</a>";
155
 
1820 raphael.pi 156
 
157
	}
369 richard 158
  else {
832 richard 159
	  if ($user[5] != $user[0]) // authentication exception or not
160
	  {
161
	  	$l_logout_explain = "Ferme la session de l'usager actuellement connect&eacute;. <br><br>Utilisateur connect&eacute; : <a href=\"http://$hostname:3990/logoff\" title=\"Deconnecter l'utilisateur $user[5]\"><b>$user[5]</b></a><br><br>$nb_connection_history derni&egrave;res connexions :$connection_history";
162
		$l_logout = "<a href=\"http://$hostname:3990/logoff\">Se d&eacute;connecter d'internet</a>";
163
	  }
164
	  else
165
	  {
166
		  $l_logout_explain = "Votre système ($user[5]) est en exception d'authentication.<br><br>$nb_connection_history last connections :$connection_history";
167
		  $l_logout = "Information des connexions";
168
	  }
169
	}
566 stephane 170
  $l_password_change = "<a href=\"https://$hostname/pass\">Changer votre mot de passe</a>";
536 franck 171
  $l_password_change_explain = "Vous redirige sur la page de changement du mot de passe de votre compte d'acc&egrave;s &agrave; internet.<br><br>Vous devez avoir un compte internet valide.";
1452 richard 172
  $l_sms_explain = "Vous redirige vers une la page explicative de l'auto enregistrement par SMS.<br><br><strong>Identifiant:</strong> votre numéro de téléphone<br><strong>Mot de passe:</strong> votre message";
360 richard 173
  $l_back_page = "<a href=\"javascript:history.back()\">Page pr&eacute;c&eacute;dente</a>";
1452 richard 174
  $l_service_sms = "Service SMS actif";
175
  $l_service_sms_n = "Service SMS non actif";
176
  $l_acc_sms = "Auto enregistrement par SMS";
360 richard 177
}
912 richard 178
else if($Language == 'pt'){
179
  $l_access_denied = "Acesso negado";
180
  $l_access_welcome = "Bem-vindo ao Alcasar";
181
  $l_access_unavailable = "ACESSO INDISPONÍVEL";
182
  $l_required_domain = "Site WEB Obrigatório";
955 richard 183
  $l_explain_acc_access = "Este é o centro de controle do portal para acessar você deve ter uma conta administrativa valida.";
912 richard 184
  $l_explain_access_deny = "Você tenta se conectar a um recurso cujo conteúdo é considerado inadequado no conteúdo de informações.";
955 richard 185
  $l_explain_net_pb = "O sistema detectou que o acesso é de risco, não será permitido o acesso";
912 richard 186
  $l_contact_access_deny = "Entre em contato com o administrador do sistema de segurança se acha que essa filtragem é abusiva.";
187
  $l_contact_net_pb = "Entre em contato com a empresa fornecedora de Internet para mais informações";
955 richard 188
  $l_welcome = "Página do portal";
1452 richard 189
  $l_sms_access = "<a href=\"https://$hostname/autoregistrationinfo.php\">Auto Registration by SMS</a>";
1830 raphael.pi 190
  $l_install_certif = "<a href=\"$cert_add/certificat_alcasar_ca.der\">Instalar Certificado Alcasar AC</a>";
191
  $l_install_certif_more = "<a href=\"$cert_add/certificat_alcasar_ca.der\">Instalar Certificado Alcasar AC</a>";
912 richard 192
  $l_certif_explain = "O certificado Permiti a troca de dados seguro entre seu computador e o portal Alcasar.<BR>Se este certificado não estiver incorporado no seu computador, alguns alertas de segurança deverá aparecer no navegador.<br><br>";
955 richard 193
  $l_certif_explain_help = "<a href=\"alcasar-certificat.pdf\" target=\"_blank\">Essa foi uma ajuda complementar</a>";
1124 crox53 194
  $l_category = "categoria :";
912 richard 195
if ((isset ($user[4])) && ($user[4] == "0")) {
955 richard 196
	  $l_logout_explain = "Não há conexão de Internet aberta em seu computador, deseja conectar?";
1822 raphael.pi 197
	  $l_logout = "<a href=\"http://www.google.com\">Abrir uma conexão de Internet</a>";
198
 
1820 raphael.pi 199
 
200
	}
912 richard 201
  else {
202
	  if ($user[5] != $user[0]) // authentication exception or not
203
	  {
955 richard 204
		  $l_logout_explain = "Se desejar, feche a conexão do usuário atual conectado.<br> Usuário conectado : <a href=\"http://$hostname:3990/logoff\" title=\"Disconnect user $user[5]\"><b>$user[5]</b></a><br><br>$nb_connection_history last connections :$connection_history";
922 richard 205
		  $l_logout = "<a href=\"http://$hostname:3990/logoff\">Sair da Internet</a>";
912 richard 206
	  }
207
	  else
208
	  {
955 richard 209
		  $l_logout_explain = "O sistema ($user[5]) detctou exesso de autenticação.<br><br>$nb_connection_history logins últimos :$connection_history";
922 richard 210
		  $l_logout = "Informações de conexões";
912 richard 211
	  }
212
  	}
922 richard 213
  $l_password_change = "<a href=\"https://$hostname/pass\">Mudar sua senha</a>";
955 richard 214
  $l_password_change_explain = "Você será redirecionado à página de alteração de senha.<br><br> e deverá ter uma conta de usuário valido para efetuar a troca e acessar à Internet.";
1452 richard 215
  $l_sms_explain = "Redirect you on auto registration page.<br><br><strong>Login:</strong> your phone number<br><strong>Password:</strong> SMS content";
922 richard 216
  $l_back_page = "<a href=\"javascript:history.back()\">Página anterior</a>";
1452 richard 217
  $l_service_sms = "SMS service enable";
218
  $l_service_sms_n = "SMS service disable";
219
  $l_acc_sms = "Auto registration by SMS";
912 richard 220
}
360 richard 221
else {
222
  $l_access_denied = "ACCESS DENIED";
369 richard 223
  $l_access_welcome = "Welcome on ALCASAR";
360 richard 224
  $l_access_unavailable = "ACCESS UNAVAILABLE";
225
  $l_required_domain = "Required WEB site";
369 richard 226
  $l_explain_acc_access = "This center control the portal. You must have an administrative account.";
801 richard 227
  $l_explain_access_deny = "You try to connect to a resource whose content is deemed to contain inappropriate information.";
360 richard 228
  $l_explain_net_pb = "Your portal has just detected that the Internet access is down";
229
  $l_contact_access_deny = "Contact your security system manager if you think this filtering is abusive.";
230
  $l_contact_net_pb = "Contact your network responsive or your Internet provider for more information";
369 richard 231
  $l_welcome = "Your captive portal main page";
1452 richard 232
  $l_sms_access = "<a href=\"https://$hostname/autoregistrationinfo.php\">Auto Registration by SMS</a>";
1830 raphael.pi 233
  $l_install_certif = "<a href=\"$cert_add/certificat_alcasar_ca.der\">Install ALCASAR AC Certificate</a>";
234
  $l_install_certif_more = "<a href=\"$cert_add/certificat_alcasar_ca.der\">Install ALCASAR AC Certificate</a>";
688 richard 235
  $l_certif_explain = "Allow secure data exchange between your computer and ALCASAR portal.<BR>If this certificate isn't incorporated in your computer, some security alerts should appear in your browser.<br><br>";
236
  $l_certif_explain_help = "<a href=\"alcasar-certificat.pdf\" target=\"_blank\">Complementary help</a>";
1124 crox53 237
  $l_category = "category :";
783 richard 238
if ((isset ($user[4])) && ($user[4] == "0")) {
369 richard 239
	  $l_logout_explain = "No Internet consultation session is actualy open on your system";
1822 raphael.pi 240
		$l_logout = "<a href=\"http://www.google.com\">Open an Internet session</a>";
241
 
1820 raphael.pi 242
 
243
	}
369 richard 244
  else {
832 richard 245
	  if ($user[5] != $user[0]) // authentication exception or not
246
	  {
922 richard 247
		  $l_logout_explain = "Close the session of the user currently connected.<br> User logged-on : <a href=\"http://$hostname:3990/logoff\" title=\"Disconnect user $user[5]\"><b>$user[5]</b></a><br><br>$nb_connection_history last connections :$connection_history";
783 richard 248
		  $l_logout = "<a href=\"http://$hostname:3990/logoff\">Logoff from internet</a>";
832 richard 249
	  }
250
	  else
251
	  {
922 richard 252
		  $l_logout_explain = "Your system ($user[5]) is in exception of authentication.<br><br>$nb_connection_history Last logins :$connection_history";
832 richard 253
		  $l_logout = "Connections information";
254
	  }
783 richard 255
  	}
566 stephane 256
  $l_password_change = "<a href=\"https://$hostname/pass\">Change your password</a>";
799 richard 257
  $l_password_change_explain = "Redirect you on password change page.<br><br> You should already have an Internet access account.";
1452 richard 258
  $l_sms_explain = "Redirect you on auto registration page.<br><br><strong>Login:</strong> your phone number<br><strong>Password:</strong> SMS content";
360 richard 259
  $l_back_page = "<a href=\"javascript:history.back()\">Previous page</a>";
1452 richard 260
  $l_service_sms = "SMS service enable";
261
  $l_service_sms_n = "SMS service disable";
262
  $l_acc_sms = "Auto registration by SMS";
360 richard 263
}
1987 richard 264
 
369 richard 265
$l_title = ($direct_access ? $l_access_welcome : ($network_pb ? $l_access_unavailable : $l_access_denied));
360 richard 266
$l_explain = ($direct_access ? $l_explain_acc_access : ($network_pb ? $l_explain_net_pb : $l_explain_access_deny));
509 richard 267
 
1987 richard 268
# set the icons
509 richard 269
$img_rep = "images/";
270
$img_organisme = "organisme.png";
271
$img_access = "globe_acces_70.png";
272
$img_connect = "globe_70.png";
273
$img_warning = "globe_warning_70.png";
274
$img_pwd = "cle_ombre.png";
275
$img_certificate = "certificat.png";
276
$img_acc = "logo-alcasar_70.png";
1452 richard 277
$img_sms = "sms.png";
509 richard 278
$img_false = "interdit.png";
1452 richard 279
$img_adm = "adm.png";
509 richard 280
$img_internet = $img_connect;
281
 
783 richard 282
if ((isset ($user[4])) && ($user[4] == "0")) {
509 richard 283
	if (! $network_pb) {
284
		$img_internet = $img_access;
285
		}
286
		else {
287
		$img_internet = $img_warning;
288
	}
289
}
290
else {
291
	$img_internet = $img_connect;
292
}
293
 
360 richard 294
?>
566 stephane 295
	<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
296
	<html>
297
	<head>
298
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
299
	<title>ALCASAR - <?php echo $l_title; ?></title>
300
	<meta http-equiv="Cache-control" content="no-cache">
301
	<meta http-equiv="Pragma" content="no-cache">
302
	<link rel="stylesheet" type="text/css" href="css/style_intercept.css">
303
	<script type="text/javascript">
509 richard 304
		function valoriserDiv5(param){
305
			document.getElementById("box_info").innerHTML = param.innerHTML;
306
		}
307
	</script>
360 richard 308
</head>
566 stephane 309
<body onload="valoriserDiv5(text_conn);">
509 richard 310
<?php
360 richard 311
if ($direct_access){
312
	echo "
566 stephane 313
		<div id=\"cadre_titre\" class=\"titre_controle\">
314
			<p id=\"acces_controle\" class=\"titre_controle\">$l_title</p>";
509 richard 315
	if ($network_pb) {
566 stephane 316
		echo "	<span>$l_explain_net_pb</span>";
509 richard 317
		}
360 richard 318
	}
509 richard 319
	else {
320
		echo"
566 stephane 321
			<div id=\"cadre_titre\" class=\"titre_refus\">
322
				<p id=\"acces_controle\" class=\"titre_refus\">$l_title</p>";
363 richard 323
	}
360 richard 324
?>
566 stephane 325
			<div id="boite_logo">
326
				<img src="images/organisme.png">
327
			</div>
328
		</div>
329
		<div id="contenu_acces">
330
			<div id="box_url">
1124 crox53 331
<?php 
1987 richard 332
# search here in the blacklist categories if we want to display it (if ((! $direct_access) && (! $network_pb)){}
1124 crox53 333
?>
566 stephane 334
			</div>
1452 richard 335
<?php
1987 richard 336
# Check if the SMS service is enable
1506 franck 337
$service_SMS_status="false";
338
if ($service_SMS_status == "true") {
1452 richard 339
$sms_div='	
340
			<div class="box_menu" id="box_acc" onmouseover="valoriserDiv5(text_acc);">
341
				<span>'.$l_sms_access.'</span>
342
				<img src="'.$img_rep.''.$img_sms.'">
343
			</div>
344
';
345
 
346
$sms_div_over='			
347
			<div class="div-cache" id="text_acc">
348
				<h2>'.$l_sms_access.'</h2>
349
				<p>'.$l_sms_explain.'</p>
350
				<p><font color="green"><center>'.$l_service_sms.'</center></font></p>
351
				<img src="'.$img_rep.''.$img_sms.'">
352
			</div>
353
';
354
}
1508 richard 355
else {
356
$sms_div='';
357
$sms_div_over='';
358
}
1452 richard 359
?>
509 richard 360
<?php
361
if ($direct_access){
566 stephane 362
	echo "	<div id=\"box_bienvenue\">
360 richard 363
				$l_welcome
566 stephane 364
			</div>
365
			<div class=\"box_menu\" id=\"box_conn\" onmouseover=\"valoriserDiv5(text_conn);\">
366
				<span>$l_logout</span>
367
				<img src=\"$img_rep$img_internet\">
368
			</div>
369
			<div class=\"box_menu\" id=\"box_certif\" onmouseover=\"valoriserDiv5(text_certif);\">
370
				<span>$l_install_certif</span>
371
				<img src=\"$img_rep$img_certificate\">
372
			</div>
373
			<div class=\"box_menu\" id=\"box_mdp\" onmouseover=\"valoriserDiv5(text_mdp);\">
374
				<img src=\"$img_rep$img_pwd\">
375
				<span>$l_password_change</span>
376
			</div>		
1452 richard 377
			$sms_div
566 stephane 378
			<div class=\"div-cache\" id=\"text_conn\">
379
				<h2>$l_logout</h2>
380
				<p>$l_logout_explain</p>
381
				<img src=\"$img_rep$img_internet\">
382
			</div>
383
			<div class=\"div-cache\" id=\"text_certif\">
384
				<h2>$l_install_certif_more</h2>
385
				<p>$l_certif_explain $l_certif_explain_help</p>
386
				<img src=\"$img_rep$img_certificate\">				
387
			</div>
388
			<div class=\"div-cache\" id=\"text_mdp\">
389
				<h2>$l_password_change</h2>
390
				<p>$l_password_change_explain</p>
391
				<img src=\"$img_rep$img_pwd\">
392
			</div>
1452 richard 393
			$sms_div_over
566 stephane 394
			<div id=\"box_info\">
395
			</div>";
509 richard 396
	}
397
	else {
398
		echo "
566 stephane 399
			<div id=\"box_refuse\">
509 richard 400
				<img src=\"$img_rep$img_false\">
566 stephane 401
				<p>$l_explain</p>
402
			</div>
403
			<div id=\"liens_redir\">
404
				<p>$l_back_page</p>
405
			</div>";
509 richard 406
		}
407
	if (($network_pb)&&(! $direct_access)) {
566 stephane 408
	echo "	<span>Diagnostic : $diagnostic</span>";
509 richard 409
	}
363 richard 410
?>
566 stephane 411
		</div>
1452 richard 412
		<div id="corner">
413
			<div id="adm" class="corn">
1729 richard 414
				<a href="https://<?php echo $hostname; ?>/acc/"><img src=<?php echo $img_rep.''.$img_adm; ?>></a>
1452 richard 415
			</div>
416
		</div>
566 stephane 417
	</body>
1822 raphael.pi 418
</html>