phpldapadmin/htdocs/timeout.php

38 lines
912 B
PHP
Raw Normal View History

2009-06-30 09:29:51 +00:00
<?php
/**
* Time out page to be displayed on the right frame
*
* Variables that come in as GET vars:
* - server_id
*
* @package phpLDAPadmin
*/
/**
*/
require './common.php';
if (! isset($ldapserver))
header("Location: index.php");
include './header.php';
# If $session_timeout not defined, use ( session_cache_expire() - 1 )
$session_timeout = $ldapserver->session_timeout ? $ldapserver->session_timeout : session_cache_expire()-1;
?>
<h3 class="title"><?php echo $ldapserver->name; ?></h3>
<br />
<br />
<center>
2009-06-30 10:26:08 +00:00
<b><?php printf('%s %s %s',_('Your Session timed out after'),$session_timeout,_('min. of inactivity. You have been automatically logged out.')); ?></b>
2009-06-30 09:29:51 +00:00
<br />
<br />
2009-06-30 10:26:08 +00:00
<?php echo _('To log back in please click on the following link:'); ?><br />
<a href="login_form.php?server_id=<?php echo $ldapserver->server_id; ?>"><?php echo _('Login...'); ?></a>
2009-06-30 09:29:51 +00:00
</center>
</body>
</html>