-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
76 lines (58 loc) · 2.33 KB
/
about.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
<?php
//if (session_status() !== PHP_SESSION_ACTIVE) {session_start();} for php 5.4 and above
if(session_id() == '' || !isset($_SESSION)){session_start();}
?>
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Register || Online book Sharing Platform "Porao"</title>
<link rel="stylesheet" href="css/foundation.css" />
<script src="js/vendor/modernizr.js"></script>
</head>
<body>
<nav class="top-bar" data-topbar role="navigation">
<ul class="title-area">
<li class="name">
<h1><a href="index.php">Online book Sharing Platform "Porao"</a></h1>
</li>
<li class="toggle-topbar menu-icon"><a href="#"><span></span></a></li>
</ul>
<section class="top-bar-section">
<!-- Right Nav Section -->
<ul class="right">
<?php
if(isset($_SESSION['username'])){
echo '<li><a href="index.php">Home</a></li>';
echo '<li><a href="books.php">Books</a></li>';
echo '<li><a href="ShareBookAdd.php">Share Book</a></li>';
echo '<li><a href="DonateBookAdd.php">Donate Book</a></li>';
echo '<li><a href="requests.php">Your Requests</a></li>';
echo '<li ><a href="yourbooks.php">Your Books</a></li>';
echo '<li class="active"><a href="about.php">About</a></li>';
echo '<li><a href="logout.php">Log Out</a></li>';
}
else{
echo '<li><a href="login.php">Log In</a></li>';
echo '<li><a href="register.php">Register</a></li>';
}
?>
</ul>
</section>
</nav>
<div class="row" style="margin-top:30px;">
<div class="small-12">
<h1>Online book Sharing Platform "Porao" is a web application, developed by <b> Lamia Jabin Rimty </b> for final year masters course under <b> mama sir</b> .</h1></div> </h1>
<footer>
<p style="text-align:center; font-size:0.8em;">© Online book Sharing Platform "Porao". All Rights Reserved.</p>
</footer>
</div>
</div>
<script src="js/vendor/jquery.js"></script>
<script src="js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>