-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavbar.php
27 lines (25 loc) · 869 Bytes
/
navbar.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
<?php
require ("session.php");
?>
<nav>
<link rel="stylesheet" href="style-navbar.css">
<a href="index.php"><img src="logo.svg" id="logo"></a>
<p>
<a href="followFeed.php">Obserwowani</a>
<a href="insertForm.php">Dodaj post</a>
<form target="_self" action="index.php" method="get">
<p style="margin: 0;">
<input type="text" class="nav-search" name="fraza" style="margin-right:5px;">
<input type="submit" id="submit" value="Wyszukaj" >
</p>
</form>
<?php $idUzytkownika=$_SESSION["id"];?>
<div class="nav-right">
<a href="profile.php?id=<?php echo "$idUzytkownika"?>">
<?= $_SESSION["login"] ?>
</a>
<a href="favorites.php">Polubione posty</a>
<a href="logout.php">Wyloguj</a>
</div>
</p>
</nav>