Files
shit-show/shit-show/resources/views/layouts/navigation-app.blade.php

25 lines
1.1 KiB
PHP

<header class="p-3 bg-dark text-white">
<div class="container">
<div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start">
<a href="/" class="d-flex align-items-center mb-2 mb-lg-0 text-white text-decoration-none">
<svg class="bi me-2" width="40" height="32" role="img" aria-label="Bootstrap"><use xlink:href="#bootstrap"/></svg>
</a>
<ul class="nav col-12 col-lg-auto me-lg-auto mb-2 justify-content-center mb-md-0">
<li><a href="/dashboard" class="nav-link px-2 text-white">Dashboard</a></li>
<li><a href="/ownstats" class="nav-link px-2 text-white">Eigene Statistik</a></li>
<li><a href="/highscores" class="nav-link px-2 text-white">Highscores</a></li>
<li><a href="/prices" class="nav-link px-2 text-white">Preise</a></li>
</ul>
<div class="text-end">
<form action="/logout" method="post">
@csrf
<button type="submit" class="btn btn-danger">Abmelden</button>
</form>
</div>
</div>
</div>
</header>