-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsider2.php
More file actions
28 lines (19 loc) · 765 Bytes
/
sider2.php
File metadata and controls
28 lines (19 loc) · 765 Bytes
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
<div class="android-drawer mdl-layout__drawer ">
<header class="demo-drawer-header mdl-color--blue-grey-900 mdl-color-text--blue-grey-50">
<img src="
<?php
$profilepic=$_SESSION['pic'];
echo $profilepic;
?>" class="demo-avatar">
<span>
<?php
echo $_SESSION["name"];
?>
</span>
</header>
<nav class="mdl-navigation">
<a class="mdl-navigation__link" href="index.php">Home</a>
<a class="mdl-navigation__link" href="leaderboard.php">LeaderBoard</a>
<a class="mdl-navigation__link" href="rules.php">Rules</a>
</nav>
</div>