Changed style and added friendrequests
This commit is contained in:
@@ -1,16 +1,17 @@
|
||||
<meta charset="utf-8">
|
||||
<title>MyHyvesbook+</title>
|
||||
<!-- Add your javascript files here. -->
|
||||
<script src="/js/jquery.js"></script>
|
||||
<script src="/js/header.js"></script>
|
||||
<script src="/js/menu.js"></script>
|
||||
<script src="js/jquery.js"></script>
|
||||
<script src="js/header.js"></script>
|
||||
<script src="js/menu.js"></script>
|
||||
<script src="js/notifications.js"></script>
|
||||
<style>
|
||||
/* Add your css files here. */
|
||||
@import url("/styles/main.css");
|
||||
@import url("/styles/font-awesome.css");
|
||||
@import url("/styles/header.css");
|
||||
@import url("/styles/menu.css");
|
||||
@import url("/styles/footer.css");
|
||||
@import url("styles/main.css");
|
||||
@import url("styles/font-awesome.css");
|
||||
@import url("styles/header.css");
|
||||
@import url("styles/menu.css");
|
||||
@import url("styles/footer.css");
|
||||
</style>
|
||||
<?php
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ $userinfo = getHeaderInfo();
|
||||
<a href="profile.php"><img src="/img/top-logo.png" alt="MyHyvesbook+" /></a>
|
||||
</div>
|
||||
<div id="header-search">
|
||||
<form action="/search" method="get">
|
||||
<form action="search.php" method="get">
|
||||
<input name="search"
|
||||
type="text"
|
||||
placeholder="Zoek naar wat je wil"
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
if (!empty($friend["profilepicture"]))
|
||||
$pf = $friend["profilepicture"];
|
||||
|
||||
if ($i > 1)
|
||||
if ($i > 5)
|
||||
$extraItem = "extra-menu-items";
|
||||
|
||||
// Echo the friend.
|
||||
@@ -62,8 +62,8 @@
|
||||
</form>
|
||||
</li>
|
||||
";
|
||||
if ($i > 1) {
|
||||
$i -= 1;
|
||||
if ($i > 5) {
|
||||
$i -= 5;
|
||||
echo "
|
||||
<li class='more-item' id='more-friends-click'>
|
||||
En nog $i anderen...
|
||||
|
||||
@@ -5,7 +5,12 @@
|
||||
<a href="profile.php"><i class="fa fa-user" data-title="Profiel"></i></a>
|
||||
<a href="logout.php"><i class="fa fa-sign-out" data-title="Uitloggen"></i></a>
|
||||
</section>
|
||||
<section id="not">
|
||||
<section id="notifocationCenter">
|
||||
<h4>
|
||||
Vriendchapsverzoeken
|
||||
</h4>
|
||||
<ul class="nav-list" id="friendrequestslist">
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
</nav>
|
||||
Reference in New Issue
Block a user