2025-08-04 17:45:44 +02:00
|
|
|
import type { NextPage } from "next";
|
|
|
|
|
import Head from "next/head";
|
|
|
|
|
import { FormPswReset } from "~/forms/FormNewPswReset";
|
2025-08-28 18:27:07 +02:00
|
|
|
import { useTranslation } from "~/providers/I18nProvider";
|
2025-08-04 17:45:44 +02:00
|
|
|
|
|
|
|
|
const NewPasswordResetPage: NextPage = () => {
|
2025-08-28 18:27:07 +02:00
|
|
|
const { t } = useTranslation();
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-08-28 18:27:07 +02:00
|
|
|
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>
|
|
|
|
|
</>
|
|
|
|
|
);
|
2025-08-04 17:45:44 +02:00
|
|
|
};
|
|
|
|
|
export default NewPasswordResetPage;
|