diff --git a/app/(pages)/book-now/page.tsx b/app/(pages)/book-now/page.tsx index 94ad858..73776cc 100644 --- a/app/(pages)/book-now/page.tsx +++ b/app/(pages)/book-now/page.tsx @@ -104,14 +104,6 @@ export default function BookNowPage() { const [showSignupDialog, setShowSignupDialog] = useState(false); const [loginPrefillEmail, setLoginPrefillEmail] = useState(undefined); - // Require authentication before accessing booking page - useEffect(() => { - if (!isAuthenticated) { - // Show login dialog immediately if not authenticated - setShowLoginDialog(true); - } - }, [isAuthenticated]); - // Helper function to convert day name to day number (0-6) const getDayNumber = (dayName: string): number => { const dayMap: Record = { @@ -237,7 +229,8 @@ export default function BookNowPage() { // Check if user is authenticated if (!isAuthenticated) { - // Open login dialog if not authenticated + // Show alert and open login dialog if not authenticated + toast.error("Please log in or sign up to book an appointment"); setShowLoginDialog(true); return; } @@ -666,13 +659,6 @@ export default function BookNowPage() {

{error}

)} - {!isAuthenticated && ( -
-

- Please log in to book an appointment. The login dialog should appear automatically. -

-
- )}
{/* Personal Information Section */}
@@ -699,7 +685,6 @@ export default function BookNowPage() { } maxLength={100} required - disabled={!isAuthenticated} className={`h-11 ${isDark ? 'bg-gray-700 border-gray-600 text-white placeholder:text-gray-400' : 'bg-white border-gray-300 text-gray-900 placeholder:text-gray-500'}`} />
@@ -721,7 +706,6 @@ export default function BookNowPage() { } maxLength={100} required - disabled={!isAuthenticated} className={`h-11 ${isDark ? 'bg-gray-700 border-gray-600 text-white placeholder:text-gray-400' : 'bg-white border-gray-300 text-gray-900 placeholder:text-gray-500'}`} /> @@ -743,7 +727,6 @@ export default function BookNowPage() { onChange={(e) => handleChange("email", e.target.value)} maxLength={100} required - disabled={!isAuthenticated} className={`h-11 ${isDark ? 'bg-gray-700 border-gray-600 text-white placeholder:text-gray-400' : 'bg-white border-gray-300 text-gray-900 placeholder:text-gray-500'}`} /> @@ -764,7 +747,6 @@ export default function BookNowPage() { onChange={(e) => handleChange("phone", e.target.value)} maxLength={100} required - disabled={!isAuthenticated} className={`h-11 ${isDark ? 'bg-gray-700 border-gray-600 text-white placeholder:text-gray-400' : 'bg-white border-gray-300 text-gray-900 placeholder:text-gray-500'}`} /> @@ -839,14 +821,9 @@ export default function BookNowPage() { onClick={(e) => { e.preventDefault(); e.stopPropagation(); - if (!isAuthenticated) { - setShowLoginDialog(true); - return; - } // Pass the specific day and time slot for this button handleSlotToggle(currentDay, normalizedTimeSlot); }} - disabled={!isAuthenticated} aria-pressed={isSelected} className={`flex items-center gap-2 cursor-pointer px-4 py-2 rounded-lg border-2 transition-all focus:outline-none focus:ring-2 focus:ring-rose-500 ${ isSelected @@ -891,7 +868,6 @@ export default function BookNowPage() { value={formData.message} onChange={(e) => handleChange("message", e.target.value)} maxLength={100} - disabled={!isAuthenticated} className={`w-full rounded-md border px-3 py-2 text-sm shadow-sm transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-rose-500 focus-visible:border-rose-500 disabled:cursor-not-allowed disabled:opacity-50 ${isDark ? 'border-gray-600 bg-gray-700 text-white placeholder:text-gray-400 focus-visible:ring-rose-400 focus-visible:border-rose-400' : 'border-gray-300 bg-white text-gray-900 placeholder:text-gray-500'}`} /> @@ -901,7 +877,7 @@ export default function BookNowPage() {