Your IP : 3.16.135.185
<?php
$type = $_COOKIE['user_agent_type']??0;
if($type != 3){
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="adminportal" <?=getActive('adminportal')?>>Dashboard</a>
<a href="schools" <?=getActive('schools')?>>All Schools</a>
<a href="applicatants" <?=getActive('applicatants')?>>All Job Seekers</a>
<a href="alljoblisting" <?=getActive('alljoblisting')?>>Job Listing</a>
<a href="alljobapplication" <?=getActive('alljobapplication')?>>All Job Applications</a>
<!-- <a href="adminprofile" <?=getActive('adminprofile')?>>Account Profile</a> -->
<a href="?logout=true">Logout</a>
</div>