-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
33 lines (33 loc) · 1.12 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
<?php
if (!isset($_SESSION)) {
session_start();
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title> Project Worlds
</title>
<link href="bootstrap.min.css" rel="stylesheet">
<link href="jumbotron.css" rel="stylesheet">
</head>
<body>
<div class="container" style="padding-top: 10px;">
<nav class="navbar navbar-static-top">
<a href="https://projectworlds.in" class="navbar-brand">Project Worlds</a>
<ul class="nav nav-pills">
<li class="nav-item">
<!--a href="https://goo.gl/maps/PyT52gM87su" target="_blank"> Address: Plot no- 1, Opposite SBI, Sector 12, Kharghar, Navi Mumbai</a-->
</li>
<li class="nav-item">
<a class="" href="tel:+917709473553">Ambulance Number: 108</a>
</li>
<?php
if (isset($_SESSION['username'])) {
echo '<li class="nav-item" style="align-items: right;"> <a class="nav-link" href="logout.php">Logout</a>
</li>';
}
?>
</ul>
</nav>
</div>