mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-06 09:00:18 -06:00
Co-authored-by: Paribesh01 <nepalparibesh01@gmail.com> Co-authored-by: Paribesh Nepal <100255987+Paribesh01@users.noreply.github.com>
17 lines
598 B
TypeScript
17 lines
598 B
TypeScript
import { BackToLoginButton } from "@/modules/auth/components/back-to-login-button";
|
|
import { FormWrapper } from "@/modules/auth/components/form-wrapper";
|
|
import { EmailChangeSignIn } from "@/modules/auth/verify-email-change/components/email-change-sign-in";
|
|
|
|
export const VerifyEmailChangePage = async ({ searchParams }) => {
|
|
const { token } = await searchParams;
|
|
|
|
return (
|
|
<div className="bg-gradient-radial flex min-h-screen from-slate-200 to-slate-50">
|
|
<FormWrapper>
|
|
<EmailChangeSignIn token={token} />
|
|
<BackToLoginButton />
|
|
</FormWrapper>
|
|
</div>
|
|
);
|
|
};
|