infoalloggi-monorepo/apps/infoalloggi/src/pages/auth/new-password-reset.tsx

24 lines
695 B
TypeScript
Raw Normal View History

2025-08-04 17:45:44 +02:00
import type { NextPage } from "next";
import Head from "next/head";
import { useTranslation } from "~/providers/I18nProvider";
import { FormPswReset } from "~/forms/FormNewPswReset";
const NewPasswordResetPage: NextPage = () => {
const { t } = useTranslation();
return (
<>
<Head>
<title>{t.heads.login_titolo}</title>
<meta name="description" content={t.heads.login_description} />
</Head>
<main className="flex h-full w-full flex-col items-center justify-center px-4">
<div className="w-full max-w-md py-28 text-gray-600 md:py-44">
<FormPswReset />
</div>
</main>
</>
);
};
export default NewPasswordResetPage;