Files
ladill-meet/resources/views/meet/invitations/rsvp-done.blade.php
T
isaaccladandCursor 1705e6b435
Deploy Ladill Meet / deploy (push) Successful in 1m31s
Keep app pages light, move join actions to meeting details, fix join URL.
Force light color-scheme on app shells while scoping dark UI to the live room; remove join/restart from list cards and consolidate start/join/rejoin on the details action row; route Join meeting through /r/ so participants are registered before entering /room/.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-01 18:44:32 +00:00

20 lines
869 B
PHP

<!DOCTYPE html>
<html lang="en" class="h-full app-shell">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>RSVP recorded</title>
@include('partials.favicon')
@vite(['resources/css/app.css'])
</head>
<body class="flex min-h-screen items-center justify-center bg-slate-100 p-4 font-sans">
<div class="max-w-md rounded-2xl border border-slate-200 bg-white p-8 text-center shadow-sm">
<h1 class="text-xl font-semibold text-slate-900">Thank you</h1>
<p class="mt-2 text-sm text-slate-600">Your response (<strong>{{ $invitation->status }}</strong>) was recorded for {{ $room->title }}.</p>
@if ($invitation->status === 'accepted')
<a href="{{ $room->joinUrl() }}" class="btn-primary mt-6 inline-block">Join link</a>
@endif
</div>
</body>
</html>