Deploy Ladill Events / deploy (push) Successful in 41s
Programme sync to Meet rooms, wallet-billed mass comms, webhook lifecycle updates, and registration access bridge with join-window gating on public pages. Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
383 B
PHP
14 lines
383 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<body style="font-family: sans-serif; color: #1e293b; line-height: 1.5;">
|
|
@if($attendeeName)
|
|
<p>Hi {{ $attendeeName }},</p>
|
|
@endif
|
|
<p>You are registered for <strong>{{ $eventName }}</strong>.</p>
|
|
<p>Your badge code: <strong>{{ $badgeCode }}</strong></p>
|
|
@if(!empty($joinUrl))
|
|
<p><a href="{{ $joinUrl }}">Join the virtual session</a></p>
|
|
@endif
|
|
</body>
|
|
</html>
|