Files
ladill-mini/resources/views/email/signed-out.blade.php
T
isaaccladandCursor db66d99895 Initial Ladill Mini app — trader payment QRs without styling.
Lean control center at mini.ladill.com: payment QR CRUD, Paystack checkout with 5% fee settlement via Billing API, payments feed, and payouts. QR codes use a fixed black-and-white preset only.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-07 18:43:39 +00:00

18 lines
875 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="en" class="h-full">
<head>
<meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1">
<title>Signed out Ladill Email</title>
@include('partials.favicon')
@vite(['resources/css/app.css'])
<meta http-equiv="refresh" content="2;url={{ 'https://'.config('app.platform_domain') }}">
</head>
<body class="flex h-full items-center justify-center bg-slate-100 font-sans">
<div class="text-center">
<img src="{{ asset('images/logo/ladillemail-logo.svg') }}" alt="Ladill Email" class="mx-auto h-7 w-auto">
<p class="mt-6 text-sm text-slate-600">Youve been signed out. Redirecting…</p>
<a href="{{ 'https://'.config('app.platform_domain') }}" class="mt-2 inline-block text-sm font-medium text-indigo-600 hover:underline">Go to ladill.com</a>
</div>
</body>
</html>