-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.inc.php
More file actions
52 lines (52 loc) · 1.15 KB
/
Copy pathheader.inc.php
File metadata and controls
52 lines (52 loc) · 1.15 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
session_start();
if(isset($_POST['logout'])){
$_SESSION = array();
session_destroy();
}
?>
<header>
<?php
require_once 'includes/swiftmailer/lib/swift_required.php';
if(isset($_SESSION['user'])){
?>
<div id="topbar">
<nav>
<ul>
<li><a href="index.php"><span class="icon-home3"></span>Home</a></li>
<li><a href=""><span class="icon-user"></span>My Account</a></li>
<li><a href=""><span class="icon-cart"></span>Shopping Cart</a></li>
<li><a href="checkout.php"><span class="icon-checkmark"></span>Checkout</a></li>
</ul>
</nav>
</div>
<?php
}
?>
<div id="subheader">
<a href="index.php"><h1 id="logo">UAAR Bookstore</h1></a>
<?php
if(isset($_SESSION['user'])){
?>
<div id="login"><form><button type="submit" formaction="index.php" name="logout" formmethod="post">Logout</button></form></div>
<?php
}
else{
?>
<div id="login"><a href="register.php">Login | Register</a></div>
<?php
}
?>
</div>
<div id="cat">
<nav>
<ul>
<li><a href="">Islamic Books</a></li>
<li><a href="">Magazines</a></li>
<li><a href="">Textbooks</a></li>
<li><a href="">Novels</a></li>
<li><a href="">Notes</a></li>
</ul>
</nav>
</div>
</header>