-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdummy.php
More file actions
34 lines (33 loc) · 1.06 KB
/
dummy.php
File metadata and controls
34 lines (33 loc) · 1.06 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
34
<!DOCTYPE html>
<html>
<head>
<title>Home</title>
<link rel="stylesheet" type="text/css" href="landingpagestyle.css">
<!-- <link href="https://fonts.googleapis.com/css2?family=Baloo+2:wght@800&family=Ubuntu:wght@300&display=swap"
rel="stylesheet"> -->
</head>
<body>
<header>
<div class="name">
<h2> Wash.IT</h2>
</div>
<!--Navbar-->
<nav>
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="services.php">Services</a></li>
<li><a href="feedback.php">Feedback</a></li>
<li><a href="about.php">About</a></li>
<li><a href="contact.php">Contact</a></li>
<li><?php if (isset($_SESSION['firstName'])) : ?>
Welcome <strong style="color: green;"><?php echo $_SESSION['firstName']; ?></strong><br>
<a href="landingpage.php? logout='1'" style="color: red;">logout</a>
<a href="dashboard.php" style="color: blue;">Dashboard</a>
<?php endif ?></li>
</ul>
<div class="right">
</div>
</nav>
</header>
</body>
</html>