16 lines
516 B
TypeScript
16 lines
516 B
TypeScript
import LoginForm from "./LoginForm";
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
export default function LoginPage() {
|
|
return (
|
|
<div className="flex min-h-screen items-center justify-center bg-gray-50">
|
|
<div className="w-full max-w-md p-8 space-y-6 bg-white rounded-lg shadow-md">
|
|
<h1 className="text-2xl font-bold text-center text-gray-900">EduBox V2</h1>
|
|
<p className="text-center text-muted-foreground">Connexion à la plateforme</p>
|
|
<LoginForm />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|