Files
shit-show/shit-show/resources/views/layouts/navigation.blade.php
2021-12-25 00:37:56 +01:00

28 lines
1.3 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="/" class="nav-link px-2 text-secondary">Shit-Show</a></li>
<li><a href="/" class="nav-link px-2 text-white">Highscores</a></li>
<li><a href="/" class="nav-link px-2 text-white">Preise</a></li>
<li><a href="/" class="nav-link px-2 text-white">FAQ</a></li>
<li><a href="/" class="nav-link px-2 text-white">Credits</a></li>
</ul>
<div class="text-end">
@auth
<a href="/dashboard"><button type="button" class="btn btn-outline-light me-2">Dashboard anzeigen</button></a>
@else
<a href="/login"><button type="button" class="btn btn-outline-light me-2">Login</button></a>
<a href="/register"><button type="button" class="btn btn-warning">Registrieren</button></a>
@endauth
</div>
</div>
</div>
</header>