32 lines
773 B
TypeScript
32 lines
773 B
TypeScript
import { Metadata } from "next";
|
|
import { getServerSession } from "next-auth/next";
|
|
import { authOptions } from "@/app/api/auth/[...nextauth]/route";
|
|
import { redirect } from "next/navigation";
|
|
import { SignInForm } from "@/components/auth/signin-form";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Enkun - Connexion",
|
|
};
|
|
|
|
export default async function SignIn() {
|
|
const session = await getServerSession(authOptions);
|
|
|
|
if (session) {
|
|
redirect("/");
|
|
}
|
|
|
|
return (
|
|
<div
|
|
className="min-h-screen flex items-center justify-center"
|
|
style={{
|
|
backgroundImage: "url('/signin.jpg')",
|
|
backgroundSize: 'cover',
|
|
backgroundPosition: 'center',
|
|
backgroundRepeat: 'no-repeat'
|
|
}}
|
|
>
|
|
<SignInForm />
|
|
</div>
|
|
);
|
|
}
|