E2E tests: 15/15 passed, Playwright config, .gitignore

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-29 14:27:55 +00:00
parent dd995d9c0f
commit 565e72927d
5 changed files with 84 additions and 4 deletions

View File

@@ -0,0 +1,24 @@
"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>
);
}