From b4ad797c389a1c416524a23073f9dc6ed5096a95 Mon Sep 17 00:00:00 2001 From: isaacclad Date: Sat, 27 Jun 2026 12:40:12 +0000 Subject: [PATCH] Use shared signed-out page with Ladill Link branding. Co-authored-by: Cursor --- config/signed_out.php | 9 ++++++--- resources/views/links/signed-out.blade.php | 17 +---------------- routes/web.php | 2 +- 3 files changed, 8 insertions(+), 20 deletions(-) diff --git a/config/signed_out.php b/config/signed_out.php index 43c6565..df3184e 100644 --- a/config/signed_out.php +++ b/config/signed_out.php @@ -1,7 +1,10 @@ 'Ladill QR Plus', - 'logo' => 'images/logo/ladillqrplus-logo.svg', - 'description' => 'Your Ladill QR Plus session has ended. Sign in again to manage dynamic QR codes.', + 'title' => 'Ladill Link', + 'logo' => 'images/logo/ladilllink-logo.svg', + 'description' => 'Your Ladill Link session has ended. Sign in again to manage short links.', + 'gradient_from' => '#059669', + 'gradient_to' => '#10b981', + 'icon_wrapper_class' => 'bg-emerald-50 text-emerald-700', ]; diff --git a/resources/views/links/signed-out.blade.php b/resources/views/links/signed-out.blade.php index 18cf93e..10d87e7 100644 --- a/resources/views/links/signed-out.blade.php +++ b/resources/views/links/signed-out.blade.php @@ -1,16 +1 @@ - - - - - - Signed out — Ladill Link - @vite(['resources/css/app.css']) - - -
- Ladill Link -

You have been signed out.

- Sign in again -
- - +@include('auth.signed-out') diff --git a/routes/web.php b/routes/web.php index 39be49e..3dd169e 100644 --- a/routes/web.php +++ b/routes/web.php @@ -23,7 +23,7 @@ Route::post('/logout', [SsoLoginController::class, 'logout'])->name('logout'); Route::get('/sso/logout-bridge', [SsoLoginController::class, 'logoutBridge'])->name('sso.logout-bridge'); Route::get('/sso/logout-frontchannel', [SsoLoginController::class, 'frontchannelLogout'])->name('sso.logout-frontchannel'); Route::get('/sso/platform-signed-out', [SsoLoginController::class, 'platformSignedOut'])->name('sso.platform-signed-out'); -Route::get('/signed-out', fn () => auth()->check() ? redirect()->route('link.dashboard') : view('links.signed-out'))->name('link.signed-out'); +Route::get('/signed-out', fn () => auth()->check() ? redirect()->route('link.dashboard') : view('auth.signed-out'))->name('link.signed-out'); Route::middleware(['auth', 'platform.session'])->group(function () { Route::get('/wallet/balance', [WalletBalanceController::class, 'balance'])->name('wallet.balance');