forked from 0918nobita/Tea-tango
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
27 lines (27 loc) · 1.55 KB
/
header.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
</head>
<body>
<div id="header">Tea-tango</div>
<div id="headerMenu">
<?php
if (!empty($_SESSION['me'])) {
echo "<a href='index.php?page=my_library'><p class='headerMenuButton'><!-- マイライブラリ --><i class='fa fa-star'></i><br />ライブラリ</p></a>";
echo "<a href='index.php?page=card'><p class='headerMenuButton'><!-- 単語カード --><i class='fa fa-home'></i><br />タイムライン</p></a>";
echo "<a href='index.php?page=profile&name=".$_SESSION['me']['name']."'><p class='headerMenuButton'><i class='fa fa-user'></i><br />プロフィール</p></a>";
echo "<a href='index.php?page=others'><p class='headerMenuButton'><!-- ヘルプ --><i class='fa fa-cog'></i><br />その他</p></a>";
} else {
echo "<a href='signup.php'><p class='headerMenuButton'><!-- 単語カード --><i class='fa fa-sign-in'></i><br />新規登録</p></a>";
echo "<a href='index.php?page=card'><p class='headerMenuButton'><!-- 単語カード --><i class='fa fa-home'></i><br />タイムライン</p></a>";
echo "<a href='about.php'><p class='headerMenuButton'><i class='fa fa-info'></i><br />概要</p></a>";
echo "<a href='index.php?page=help'><p class='headerMenuButton'><!-- ヘルプ --><i class='fa fa-question'></i><br />ヘルプ</p></a>";
}
?>
</div>
</body>
</html>