You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.9 KiB
62 lines
1.9 KiB
![]()
13 years ago
|
<?php
|
||
![]()
13 years ago
|
/* For licensing terms, see /license.txt */
|
||
![]()
13 years ago
|
/**
|
||
|
* Displayed after the user has been logged out.
|
||
![]()
13 years ago
|
* @package chamilo.custompages
|
||
|
*/
|
||
|
/**
|
||
|
* Init
|
||
![]()
13 years ago
|
*/
|
||
|
$called_direcly = !function_exists('api_get_path');
|
||
![]()
11 years ago
|
if ($called_direcly) {
|
||
![]()
13 years ago
|
return '';
|
||
|
}
|
||
|
|
||
![]()
11 years ago
|
require_once 'language.php';
|
||
![]()
13 years ago
|
$www = api_get_path('WEB_PATH');
|
||
|
|
||
![]()
13 years ago
|
/**
|
||
|
* HTML output
|
||
|
*/
|
||
![]()
13 years ago
|
?>
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Custompage - logged out</title>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||
|
<!--[if !IE 6]><!-->
|
||
|
<link rel="stylesheet" type="text/css" href="<?php echo $www ?>custompages/style.css" />
|
||
|
<!--<![endif]-->
|
||
|
<!--[if IE 6]>
|
||
|
<link rel="stylesheet" type="text/css" href="/custompages/style-ie6.css" />
|
||
|
<![endif]-->
|
||
![]()
13 years ago
|
<script type="text/javascript" src="<?php echo $www ?>main/inc/lib/javascript/jquery.min.js"></script>
|
||
![]()
13 years ago
|
<script type="text/javascript">
|
||
|
$(document).ready(function() {
|
||
![]()
11 years ago
|
if (top.location != location)
|
||
![]()
13 years ago
|
top.location.href = document.location.href ;
|
||
|
});
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="backgroundimage">
|
||
|
<img src="<?php echo $www ?>/custompages/images/page-background.png" class="backgroundimage" alt="background"/>
|
||
|
</div>
|
||
|
<div id="wrapper">
|
||
|
<div id="header">
|
||
|
<img src="<?php echo $www ?>/custompages/images/header.png" alt="Logo" />
|
||
|
</div>
|
||
|
|
||
|
<div id="login-form-box" class="form-box">
|
||
|
<div id="login-form-info" class="form-info">
|
||
|
You have been logged out.
|
||
|
</div>
|
||
|
</div>
|
||
|
<a href="<?php echo $www . 'user_portal.php'; ?>">Go to your portal</a>
|
||
|
<div id="footer">
|
||
|
<img src="<?php echo $www ?>/custompages/images/footer.png" alt="footer"/>
|
||
![]()
11 years ago
|
</div>
|
||
|
</div>
|
||
![]()
13 years ago
|
</body>
|
||
|
</html>
|