16 lines
709 B
HTML
16 lines
709 B
HTML
<nav class="flex justify-between bg-blue-600 h-12 px-4 sm:px-6 lg:px-8 rounded-lg m-2 shadow-md">
|
|
<div class="flex items-center">
|
|
<h2 class="text-xl font-bold text-white hover:scale-110 transition duration-200"><a href="{% url 'homepage:home' %}">qivip</a></h2>
|
|
</div>
|
|
<div class="flex items-center">
|
|
<ul class="flex space-x-4 qp-nav-list">
|
|
<li><a href="{% url 'library:overview_quiz' %}">Bibliothek</a></li>
|
|
{% if user.is_authenticated %}
|
|
<li><a href="{% url 'accounts:home' %}">Konto</a></li>
|
|
{% else %}
|
|
<li><a href="{% url 'accounts:login' %}">Anmelden</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
</div>
|
|
</nav>
|