Files
ladill-meet/resources/views/meet/left/thanks.blade.php
T
isaaccladandCursor 5e85a4eaa1
Deploy Ladill Meet / deploy (push) Successful in 30s
Fix meeting audio attach, prune left tiles, drop Ladill Meet eyebrow.
Attach remote audio tracks for playback, remove stale participant cards on
leave, and remove the redundant Ladill Meet label from kiosk join pages.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-01 13:57:25 +00:00

28 lines
1.4 KiB
PHP

<x-meet-kiosk-layout :title="'Thank you'" :organization="$organization">
<div class="flex min-h-[calc(100vh-8rem)] flex-col items-center justify-center text-center">
<div class="w-full max-w-md rounded-3xl border border-slate-200 bg-white p-8 shadow-sm">
<div class="mx-auto flex h-14 w-14 items-center justify-center rounded-full bg-emerald-50 text-emerald-600">
<svg class="h-7 w-7" fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" d="m4.5 12.75 6 6 9-13.5"/>
</svg>
</div>
<h1 class="mt-6 text-2xl font-bold text-slate-900">
@if (session('rated'))
Thanks for your feedback
@else
You have left the meeting
@endif
</h1>
<p class="mt-3 text-sm text-slate-600">{{ $room->title }}</p>
<div class="mt-8 flex flex-col gap-3">
@auth
<a href="{{ route('meet.dashboard') }}" class="btn-primary btn-primary-lg py-3.5 font-semibold">Back to Meet</a>
@else
<a href="{{ route('meet.join', $room) }}" class="btn-primary btn-primary-lg py-3.5 font-semibold">Rejoin meeting</a>
@endauth
</div>
</div>
</div>
</x-meet-kiosk-layout>