Use shared signed-out page with Ladill Link branding.
Deploy Ladill Link / deploy (push) Successful in 50s

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-27 12:40:12 +00:00
co-authored by Cursor
parent 9516fcb9f3
commit b4ad797c38
3 changed files with 8 additions and 20 deletions
+6 -3
View File
@@ -1,7 +1,10 @@
<?php
return [
'title' => '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',
];
+1 -16
View File
@@ -1,16 +1 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Signed out Ladill Link</title>
@vite(['resources/css/app.css'])
</head>
<body class="flex min-h-screen items-center justify-center bg-slate-100 font-sans antialiased">
<div class="text-center">
<img src="{{ asset('images/logo/ladilllink-logo.svg') }}" alt="Ladill Link" class="mx-auto h-8">
<p class="mt-6 text-slate-600">You have been signed out.</p>
<a href="{{ route('sso.connect') }}" class="mt-4 inline-block text-sm font-medium text-emerald-600 hover:text-emerald-700">Sign in again</a>
</div>
</body>
</html>
@include('auth.signed-out')
+1 -1
View File
@@ -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');