Deploy Ladill Meet / deploy (push) Successful in 47s
Publish monorepo meet changes: identity API invites, join/room session fixes, Afia assistant panel, settings nav, and SSO team provisioning. Co-authored-by: Cursor <cursoragent@cursor.com>
47 lines
2.0 KiB
PHP
47 lines
2.0 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">Ready to join?</p>
|
|
|
|
@if ($errors->any())
|
|
<div class="mt-4 rounded-lg border border-red-500/40 bg-red-500/10 px-4 py-3 text-sm text-red-200">
|
|
{{ $errors->first() }}
|
|
</div>
|
|
@endif
|
|
|
|
<form method="POST" action="{{ route('meet.join.enter', $room) }}" class="mt-6 space-y-4">
|
|
@csrf
|
|
@guest
|
|
<div>
|
|
<label class="block text-sm text-slate-300">Your name</label>
|
|
<input type="text" name="display_name" required placeholder="Display name"
|
|
class="mt-1 w-full rounded-lg border-slate-600 bg-slate-700 px-4 py-3 text-white placeholder:text-slate-400">
|
|
</div>
|
|
@if ($isWebinar ?? false)
|
|
<div>
|
|
<label class="block text-sm text-slate-300">Email</label>
|
|
<input type="email" name="email" required placeholder="you@example.com"
|
|
class="mt-1 w-full rounded-lg border-slate-600 bg-slate-700 px-4 py-3 text-white placeholder:text-slate-400">
|
|
</div>
|
|
@endif
|
|
@endguest
|
|
<button type="submit" class="btn-primary w-full">Join meeting</button>
|
|
</form>
|
|
|
|
@auth
|
|
<p class="mt-4 text-center text-xs text-slate-500">Joining as {{ auth()->user()->name }}</p>
|
|
@endauth
|
|
</div>
|
|
</body>
|
|
</html>
|