-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
33 lines (30 loc) · 1 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
28
29
30
31
32
33
<?php
include ("vendor/autoload.php");
use Helpers\Auth;
$auth = Auth::check();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
</head>
<body>
<nav class="navbar navbar-expand-sm sticky-top navbar-dark bg-dark mb-1 border user-select-none">
<div class="container">
<a href="home.php" class="navbar-brand text-light">𝕊 𝔼</a>
<ul class="navbar-nav">
<li class="nav-item">
<a href="#" class="nav-link me-5">| <?= $auth->name ?> |</a>
</li>
<li class="nav-item">
<a href="actions/logout.php" class="nav-link border border-secondary rounded-pill">⇤ Logout</a>
</li>
</ul>
</div>
</nav>
</body>
</html>