24 lines
617 B
TypeScript
24 lines
617 B
TypeScript
import { redirect } from "next/navigation"
|
|
|
|
import { overview } from "@/constants/routes/myPages"
|
|
|
|
import { auth } from "@/auth"
|
|
import { getLang } from "@/i18n/serverContext"
|
|
|
|
import Form from "../index"
|
|
|
|
import { RegisterFormProps } from "@/types/components/form/registerForm"
|
|
|
|
export default async function ServerRegisterForm({
|
|
link,
|
|
subtitle,
|
|
title,
|
|
}: RegisterFormProps) {
|
|
const session = await auth()
|
|
if (session) {
|
|
// We don't want to allow users to signup if they are already authenticated.
|
|
redirect(overview[getLang()])
|
|
}
|
|
return <Form link={link} subtitle={subtitle} title={title} />
|
|
}
|