-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHeader.php
More file actions
67 lines (64 loc) · 1.67 KB
/
Header.php
File metadata and controls
67 lines (64 loc) · 1.67 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>headerfile</title>
<link rel="stylesheet" type="text/css" href="library.css">
</head>
<body>
<div class="top">
<div class="logo"> <a href="Read_Me.html">LNL</a> </div>
<div class="wel">LightNovelMultiLanguage Library<br>
Loading!!!</div>
<div id="time">
<form name="record" method="post" action="">
Reading Time:
<input name="area" type="text" value="">
</form>
</div>
<div class="detail">
<ul>
<li><a href="#">Language<span class="icon"></span></a>
<ul>
<li><a href="#">chinese</a></li>
<li><a href="#">English</a></li>
</ul>
</li>
<li><a href="personalprofilepage.php">Personal Page</a>
</li>
<li><a href="post.php">Post new topic</a></li>
</ul>
<div class="clear"></div>
</div>
</div>
<!--top-->
<div id="nav">
<div id="mulu">
<ul>
<li><a href="LibraryMainPage.html">Main Page</a></li>
<li><a href="LibraryMainPage.html#goal">About Us</a></li>
<li><a href="#" onClick="f1()">Daily Recommandation</a></li>
<li><a href="#">LibNavigation<span class="icon"></span></a>
<ul class="list1">
<li><a href="#">Help</a></li>
<li><a href="#">Report Error</a></li>
</ul>
</li>
<li><a href="#">New Event</a></li>
<li><a href="#">Covid-19 Donation</a></li>
<?php
session_start();
if(!isset($_SESSION['userName']))
{
echo '<li><a href="LibraryMainPage.html#login">Login</a></li>';
}
else
{
echo '<li><a href="logout.php">Logout</a></li>';
}
?>
</ul>
</div> <!--mulu-->
</div>
</body>
</html>