Deploy Ladill Woo Manager / deploy (push) Failing after 2s
Standalone app with SSO shell, WordPress plugin connect flow, webhook ingest, fulfillment inbox, and plugin activation API — no payment processing. Co-authored-by: Cursor <cursoragent@cursor.com>
18 lines
846 B
PHP
18 lines
846 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 Woo Manager</title>
|
|
@include('partials.favicon')
|
|
@vite(['resources/css/app.css'])
|
|
</head>
|
|
<body class="flex min-h-screen items-center justify-center bg-slate-100 p-6 font-sans antialiased">
|
|
<div class="max-w-md rounded-2xl border border-slate-200 bg-white p-8 text-center shadow-sm">
|
|
<h1 class="text-lg font-semibold text-slate-900">Signed out</h1>
|
|
<p class="mt-2 text-sm text-slate-600">You have been signed out of Ladill Woo Manager.</p>
|
|
<a href="{{ route('sso.connect') }}" class="mt-6 inline-flex rounded-xl bg-indigo-600 px-4 py-2.5 text-sm font-semibold text-white hover:bg-indigo-700">Sign in again</a>
|
|
</div>
|
|
</body>
|
|
</html>
|