blob: 0b765cf6673dc128e04629965f53a6d7bf3ed27a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import { redirect } from "next/navigation";
import KarakeepLogo from "@/components/KarakeepIcon";
import ForgotPasswordForm from "@/components/signin/ForgotPasswordForm";
import { getServerAuthSession } from "@/server/auth";
export default async function ForgotPasswordPage() {
const session = await getServerAuthSession();
if (session) {
redirect("/");
}
return (
<div className="flex min-h-screen items-center justify-center bg-background px-4 py-12 sm:px-6 lg:px-8">
<div className="w-full max-w-md space-y-8">
<div className="flex items-center justify-center">
<KarakeepLogo height={80} />
</div>
<ForgotPasswordForm />
</div>
</div>
);
}
|