Files
ladill-events/resources/views/qr/signed-out.blade.php
T
isaaccladandCursor 2c1c3cdd3e
Deploy Ladill Events / deploy (push) Successful in 30s
Enforce Events favicon everywhere and fix deploy pipeline failures.
Add favicon partial to all standalone pages, regenerate the Events icon asset, and stop marking deploys failed when the nginx vhost step cannot sudo.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-07 11:56:27 +00:00

16 lines
610 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 Events</title>
@include('partials.favicon')
</head>
<body class="flex min-h-screen items-center justify-center bg-slate-100 font-sans antialiased">
<div class="text-center">
<p class="text-slate-600">You have been signed out of Ladill Events.</p>
<a href="{{ route('sso.connect') }}" class="mt-4 inline-block text-sm font-medium text-indigo-600 hover:text-indigo-800">Sign in again</a>
</div>
</body>
</html>