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>
24 lines
1.2 KiB
PHP
24 lines
1.2 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Sign-in problem · Ladill Woo Manager</title>
|
|
@vite(['resources/css/app.css'])
|
|
</head>
|
|
<body class="flex min-h-screen items-center justify-center bg-slate-50 font-sans text-slate-900 antialiased">
|
|
<div class="mx-auto max-w-md px-6 text-center">
|
|
<img src="{{ asset('images/logo/ladillwoomanager-logo.svg') }}" alt="Ladill Woo Manager" class="mx-auto h-8 w-auto">
|
|
<h1 class="mt-6 text-xl font-semibold">We couldn't sign you in</h1>
|
|
<p class="mt-2 text-sm text-slate-500">
|
|
Sign-in didn't complete after a few tries. This is usually a temporary
|
|
issue with the Ladill account service. Please wait a moment and try again.
|
|
</p>
|
|
@if ($reason !== '')
|
|
<p class="mt-3 text-xs text-slate-400">Reference: {{ $reason }}</p>
|
|
@endif
|
|
<a href="{{ route('sso.connect', ['interactive' => 1]) }}" class="mt-6 inline-flex rounded-xl bg-indigo-600 px-5 py-2.5 text-sm font-semibold text-white hover:bg-indigo-700">Try again</a>
|
|
</div>
|
|
</body>
|
|
</html>
|