update user menu to match previous theme

This commit is contained in:
2026-05-02 15:26:07 -04:00
parent 700d2f0741
commit 935c7ba31b
@@ -2,33 +2,23 @@
<div class="nav-item dropdown"> <div class="nav-item dropdown">
<a href="#" class="nav-link d-flex lh-1 text-reset p-0" data-bs-toggle="dropdown" <a href="#" class="nav-link d-flex lh-1 text-reset p-0" data-bs-toggle="dropdown"
aria-label="Open user menu"> aria-label="Open user menu">
<span class="avatar">SE</span>
<div class="d-none d-xl-block ps-2"> <div class="d-none d-xl-block ps-2">
<div>{{Auth()->user()->name}}</div> <div>{{Auth()->user()->name}}</div>
<div class="mt-1 small text-muted">Software Engineer</div>
</div> </div>
</a> </a>
<div class="dropdown-menu dropdown-menu-end dropdown-menu-arrow"> <div class="dropdown-menu dropdown-menu-end dropdown-menu-arrow">
@php( $logout_url = View::getSection('logout_url') ?? config('tablar.logout_url', 'logout') ) @php( $logout_url = View::getSection('logout_url') ?? config('tablar.logout_url', 'logout') )
@php( $profile_url = View::getSection('profile_url') ?? config('tablar.profile_url', 'logout') )
@php( $setting_url = View::getSection('setting_url') ?? config('tablar.setting_url', 'home') )
@if (config('tablar.use_route_url', true)) @if (config('tablar.use_route_url', true))
@php( $profile_url = $profile_url ? route($profile_url) : '' )
@php( $logout_url = $logout_url ? route($logout_url) : '' ) @php( $logout_url = $logout_url ? route($logout_url) : '' )
@php( $setting_url = $setting_url ? route($setting_url) : '' )
@else @else
@php( $profile_url = $profile_url ? url($profile_url) : '' )
@php( $logout_url = $logout_url ? url($logout_url) : '' ) @php( $logout_url = $logout_url ? url($logout_url) : '' )
@php( $setting_url = $setting_url ? url($setting_url) : '' )
@endif @endif
<a href="#" class="dropdown-item">Status</a> <a href="{{ url('admin') }}" class="dropdown-item">Admin</a>
<a href="{{$profile_url}}" class="dropdown-item">Profile</a> <a href="{{ url('auth/social/oidc') }}" class="dropdown-item">Link OIDC Account</a>
<a href="#" class="dropdown-item">Feedback</a>
<div class="dropdown-divider"></div> <div class="dropdown-divider"></div>
<a href="{{$setting_url}}" class="dropdown-item">Settings</a>
<a class="dropdown-item" <a class="dropdown-item"
href="#" onclick="event.preventDefault(); document.getElementById('logout-form').submit();"> href="#" onclick="event.preventDefault(); document.getElementById('logout-form').submit();">
<i class="fa fa-fw fa-power-off text-red"></i> <i class="fa fa-fw fa-power-off text-red"></i>
@@ -44,4 +34,8 @@
</div> </div>
</div> </div>
@else
<div class="nav-item">
<a class="nav-link" href="{{ route('login') }}">Login</a>
</div>
@endif @endif