-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathheader.php
More file actions
33 lines (33 loc) · 1.1 KB
/
header.php
File metadata and controls
33 lines (33 loc) · 1.1 KB
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> Sterling Hospital
</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 class="navbar-brand">🌅 Sterling Hospital</a>
<ul class="nav nav-pills">
<li class="nav-item">
<a href="https://goo.gl/maps/PyT52gM87su" target="_blank"> Address: Sterling Hospital Road, Memnagar, Ahmedabad, Gujarat</a>
</li>
<li class="nav-item">
<a class="" href="tel:+917709473553">Ambulance Number: 07940011111</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>