Files
task-team/apps/tasks/app/forgot-password/page.tsx
2026-03-29 14:27:55 +00:00

25 lines
770 B
TypeScript

"use client";
import Link from "next/link";
import { useTranslation } from "@/lib/i18n";
export default function ForgotPasswordPage() {
const { t } = useTranslation();
return (
<div className="min-h-[70vh] flex items-center justify-center">
<div className="w-full max-w-sm">
<div className="bg-white dark:bg-gray-900 border border-gray-200 dark:border-gray-700 rounded-2xl p-6 shadow-sm text-center">
<h1 className="text-2xl font-bold mb-4">{t("auth.forgotPassword")}</h1>
<p className="text-muted mb-6">
{t("common.loading")}...
</p>
<Link href="/login" className="text-blue-600 hover:underline">
{t("common.back")}
</Link>
</div>
</div>
</div>
);
}