continued

implemented HTMX
implemented ORM (sequelize)
This commit is contained in:
Kai Waggeling 2025-11-29 21:56:21 +01:00
parent 2a9bd4e81b
commit d756a192e4
71 changed files with 3822 additions and 694 deletions

View file

@ -0,0 +1,36 @@
<header id="navbar">
<nav class="container flex justify-between items-center py-4 mx-auto relative ">
<!-- Application Logo -->
<div class="flex items-center gap-4">
<span class="bg-center bg-no-repeat bg-contain" style="height: 2rem; width: var(--header-logo-width); background-image: var(--header-logo-source);">
<!-- Logo Source from theme.css -->
</span>
<span class="self-center text-xl font-semibold whitespace-nowrap">User Portal</span>
</div>
<div class="flex items-center gap-24">
<!-- Menu Items -->
<div class="flex items-center gap-12">
<a href="/admin/users" class="button primary-text-hover">
Users
</a>
<a href="/admin/groups" class="button primary-text-hover">
Groups
</a>
</div>
<!-- User Menu -->
<div class="flex items-center gap-12">
<a href="/logout" class="button primary-text-hover">
Sign Out
</a>
<a href="/profile" class="button primary-text-hover">
{{ user.firstName }} {{ user.lastName }}
</a>
</div>
</div>
</nav>
</header>