Deploy Ladill Meet / deploy (push) Failing after 7s
Phases 0–18: core meetings, webinar, breakouts, team chat, live streaming, town hall, billing, and Ladill Mail calendar wiring. Co-authored-by: Cursor <cursoragent@cursor.com>
28 lines
1.2 KiB
PHP
28 lines
1.2 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en" class="h-full">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<title>Join · {{ $room->title }} · Ladill Meet</title>
|
|
@include('partials.favicon')
|
|
@vite(['resources/css/app.css'])
|
|
</head>
|
|
<body class="flex min-h-screen items-center justify-center bg-slate-900 p-4 font-sans text-white">
|
|
<div class="w-full max-w-md rounded-2xl bg-slate-800 p-8 shadow-xl">
|
|
<h1 class="text-xl font-semibold">{{ $room->title }}</h1>
|
|
<p class="mt-2 text-sm text-slate-400">Enter the meeting passcode to continue.</p>
|
|
|
|
<form method="POST" action="{{ route('meet.join.passcode', $room) }}" class="mt-6 space-y-4">
|
|
@csrf
|
|
<input type="password" name="passcode" required autofocus placeholder="Passcode"
|
|
class="w-full rounded-lg border-slate-600 bg-slate-700 px-4 py-3 text-white placeholder:text-slate-400">
|
|
@error('passcode')
|
|
<p class="text-sm text-red-400">{{ $message }}</p>
|
|
@enderror
|
|
<button type="submit" class="btn-primary w-full">Continue</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|