<?php
// $_SERVER['REQUEST_URI']='';
require_once "../config/config.php";
//require_once INCLUDE_DIR."/users_class.php";
if(isset($_GET['url']))
{
$url=urldecode($_GET['url']);
/*Added By asmita For dynamic Rotate Page*/
//$rotateurl= RandomFile(PHYSICAL_DIR."/member/rotating_logout_pages", array('html','htm','php'));
$smarty->assign('url', $url);
$USERROTETE = $smarty->fetch('user_rotate_logout.tpl');
$smarty->assign('USER_CONTENT', $USERROTETE);
$smarty->display('user_page_main.tpl');
}
else
{
$url=WEB_URL."/user_login.php";
Redirect($url,true);
}
?>