Scaffolded from the Ladill mini/events extraction pattern: multi-file transfers, retention controls, public landing pages, analytics, and Gitea deploy workflow. Co-authored-by: Cursor <cursoragent@cursor.com>
18 lines
844 B
PHP
18 lines
844 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Signed out — Ladill Transfer</title>
|
|
@include('partials.favicon')
|
|
@vite(['resources/css/app.css'])
|
|
</head>
|
|
<body class="flex min-h-screen items-center justify-center bg-slate-100 font-sans antialiased">
|
|
<div class="rounded-2xl border border-slate-200 bg-white px-8 py-10 text-center shadow-sm">
|
|
<img src="{{ asset('images/logo/ladilltransfer-logo.svg') }}" alt="Ladill Transfer" class="mx-auto h-6 w-auto">
|
|
<p class="mt-6 text-slate-600">You have been signed out of Ladill Transfer.</p>
|
|
<a href="{{ route('sso.connect') }}" class="mt-4 inline-block text-sm font-semibold text-indigo-600 hover:text-indigo-800">Sign in again</a>
|
|
</div>
|
|
</body>
|
|
</html>
|