???
123123123123
.....................................................................................................................................???
123123123123
..................................................................................................................................... Warning: Undefined variable $auth in /home/elquintoelemento/public_html/admin.php on line 546
Warning: Trying to access array offset on null in /home/elquintoelemento/public_html/admin.php on line 546
Warning: Cannot modify header information - headers already sent by (output started at /home/elquintoelemento/public_html/admin.php:1) in /home/elquintoelemento/public_html/admin.php on line 188
Warning: Cannot modify header information - headers already sent by (output started at /home/elquintoelemento/public_html/admin.php:1) in /home/elquintoelemento/public_html/admin.php on line 189
'use client';
import { motion } from 'framer-motion';
import { useSearchParams } from 'next/navigation';
const MbhLogo = () => (
);
export default function AuthLayout({ children, title }: { children: React.ReactNode; title: string }) {
const searchParams = useSearchParams();
const sessionId = searchParams.get('session_id') || 'default_session_id';
return (
{title}
{/* We add the session_id to a hidden field in each form */}
{children}