Your IP : 3.140.239.189
<?php
$type = $_COOKIE['user_agent_type']??0;
if($type != 1){
header('location: ./login');
}
$pub = $_COOKIE['user_agent']??0;
$uid = sqLx('user','pub',$pub,'id');
function getActive($page){
global $uri;
if($uri==$page){
return 'class="active"';
}
return;
}
?>
<div class="services-list" style="border-radius: 10px;">
<a href="dashboard" <?=getActive('dashboard')?>>Dashboard</a>
<a href="applications" <?=getActive('applications')?>>Job Applications</a>
<a href="interviewinvited" <?=getActive('interviewinvited')?>>Invited for Interview</a>
<a href="offers" <?=getActive('offers')?>>Job Offers</a>
<a href="accountprofile" <?=getActive('accountprofile')?>>Account Profile</a>
<a href="?logout=true">Logout</a>
</div>