mirror of
https://github.com/pacnpal/thrillwiki_laravel.git
synced 2025-12-20 09:11:10 -05:00
34 lines
1.0 KiB
PHP
34 lines
1.0 KiB
PHP
<div class="relative">
|
|
<div
|
|
wire:click="toggle"
|
|
class="flex items-center justify-center w-8 h-8 text-gray-500 transition-transform rounded-full cursor-pointer hover:text-primary dark:text-gray-400 dark:hover:text-primary hover:scale-105"
|
|
>
|
|
<i class="text-xl fas fa-user"></i>
|
|
</div>
|
|
|
|
<!-- Auth Menu -->
|
|
<div
|
|
wire:model="isOpen"
|
|
class="bg-white dropdown-menu dark:bg-gray-800"
|
|
style="display: {{ $isOpen ? 'block' : 'none' }}"
|
|
>
|
|
<div
|
|
hx-get="{{ route('login') }}"
|
|
hx-target="body"
|
|
hx-swap="beforeend"
|
|
class="cursor-pointer menu-item"
|
|
>
|
|
<i class="w-5 fas fa-sign-in-alt"></i>
|
|
<span>Login</span>
|
|
</div>
|
|
<div
|
|
hx-get="{{ route('register') }}"
|
|
hx-target="body"
|
|
hx-swap="beforeend"
|
|
class="cursor-pointer menu-item"
|
|
>
|
|
<i class="w-5 fas fa-user-plus"></i>
|
|
<span>Register</span>
|
|
</div>
|
|
</div>
|
|
</div> |