Your IP : 3.16.137.217
<?php
$type = $_COOKIE['user_agent_type']??0;
if($type != 2){
header('location: ./login');
}
function getActive($page){
global $uri;
if($uri==$page){
return 'class="active"';
}
return;
}
?>
<div class="services-list" style="border-radius: 10px;">
<a href="jobportal" <?=getActive('jobportal')?>>Dashboard</a>
<a href="postjob" <?=getActive('postjob')?>>Post New Job</a>
<a href="joblisting" <?=getActive('joblisting')?>>Job Listing</a>
<a href="jobapplications" <?=getActive('jobapplications')?>>Candidates</a>
<a href="employerprofile" <?=getActive('employerprofile')?>>Account Profile</a>
<a href="?logout=true">Logout</a>
</div>