-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader.php
110 lines (98 loc) · 3.41 KB
/
header.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?php session_start(); ?>
<?php
if(isset($_SESSION['uid'])){
$data="logout";
}
else
{
$data="login";
}
?>
<!DOCTYPE html>
<html lang="zxx">
<head>
<title>Technocrat | Job Recruiting Portal</title>
<meta charset="UTF-8">
<meta name="description" content=" Divisima | eCommerce Template">
<meta name="keywords" content="divisima, eCommerce, creative, html">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<link href="img/icons/icon.jpg" rel="shortcut icon"/>
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans:300,300i,400,400i,700,700i" rel="stylesheet">
<!-- Stylesheets -->
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<link rel="stylesheet" href="css/font-awesome.min.css"/>
<link rel="stylesheet" href="css/flaticon.css"/>
<link rel="stylesheet" href="css/slicknav.min.css"/>
<link rel="stylesheet" href="css/jquery-ui.min.css"/>
<link rel="stylesheet" href="css/owl.carousel.min.css"/>
<link rel="stylesheet" href="css/animate.css"/>
<link rel="stylesheet" href="css/style.css"/>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Page Preloder -->
<div id="preloder">
<div class="loader"></div>
</div>
<!-- Header section -->
<header class="header-section">
<div class="header-top">
<div class="container">
<div class="row">
<div class="col-lg-2 text-center text-lg-left">
<!-- logo -->
<a href="index.php" class="site-logo">
<img src="img/icons/logo.jpg" alt="">
</a>
</div>
<div class="col-xl-6 col-lg-5">
<form class="header-search-form">
<input type="text" placeholder="Search on technocrat ....">
<button><i class="flaticon-search"></i></button>
</form>
</div>
<div class="col-xl-4 col-lg-5">
<div class="user-panel">
<div class="up-item">
<i class="flaticon-profile"></i>
<?php
if ($data=='logout') {
echo "<a href='logout.php'>Sign Out</a> ";
}else{
echo "<a href='login.php'>#</a>/<a href='register.php'># </a>";
}
?>
<a class="site-btn" href="post_check.php" style="color: white">Post An Add</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<nav class="main-navbar">
<div class="container">
<!-- menu -->
<ul class="main-menu">
<li><a href="index.php">Home</a></li>
<li><a href="job.php">Jobs</a></li>
<li><a href="resume_view.php">Resume's</a></li>
<li><a href="resume_builder.php">Resume Builder<span class="new">New</span></a></li>
<li><a href="data.php">Job Statistics</a></li>
<li><a href="#">My Account</a>
<ul class="sub-menu">
<li><a href="dashboard_check.php">Dashboard</a></li>
<li><a href="profile.php">Profile</a></li>
</ul>
</li>
<li><a href="about.php">About Us</a></li>
<li><a href="contact.php">Contact Us</a></li>
</ul>
</div>
</nav>
</header>