// app/login/unauthorized/page.tsx 'use client'; import { AlertCircle } from 'lucide-react'; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'; import { Button } from '@/components/ui/button'; import Link from 'next/link'; import { signOut } from 'next-auth/react'; import { useEffect } from 'react'; export default function UnauthorizedPage() { // Clear any partial session data when landing on this page useEffect(() => { signOut({ redirect: false }); }, []); return (
Access Denied
Not Registered Your email is not registered to access this platform.

What does this mean?

This is a university-only platform. If you believe you should have access, please contact your administrator or department coordinator.

); }