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:
24
apps/tasks/app/forgot-password/page.tsx
Normal file
24
apps/tasks/app/forgot-password/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
@@ -17,7 +17,21 @@
|
||||
"registerBtn": "Registrovat se",
|
||||
"noAccount": "Nemáte účet?",
|
||||
"hasAccount": "Máte účet?",
|
||||
"logout": "Odhlásit se"
|
||||
"logout": "Odhlásit se",
|
||||
"password": "Heslo",
|
||||
"confirmPassword": "Potvrdit heslo",
|
||||
"showPassword": "Zobrazit",
|
||||
"hidePassword": "Skryt",
|
||||
"forgotPassword": "Zapomenuté heslo?",
|
||||
"passwordMinLength": "Heslo musí mít alespoň 6 znaků",
|
||||
"passwordMismatch": "Hesla se neshodují",
|
||||
"strength": {
|
||||
"weak": "Slabé",
|
||||
"fair": "Ucházející",
|
||||
"good": "Dobré",
|
||||
"strong": "Silné",
|
||||
"excellent": "Výborné"
|
||||
}
|
||||
},
|
||||
"tasks": {
|
||||
"title": "Úkoly",
|
||||
|
||||
@@ -17,7 +17,21 @@
|
||||
"registerBtn": "הירשם",
|
||||
"noAccount": "אין לך חשבון?",
|
||||
"hasAccount": "יש לך חשבון?",
|
||||
"logout": "התנתק"
|
||||
"logout": "התנתק",
|
||||
"password": "סיסמה",
|
||||
"confirmPassword": "אשר סיסמה",
|
||||
"showPassword": "הצג",
|
||||
"hidePassword": "הסתר",
|
||||
"forgotPassword": "שכחת סיסמה?",
|
||||
"passwordMinLength": "סיסמה חייבת להכיל לפחות 6 תווים",
|
||||
"passwordMismatch": "הסיסמאות לא תואמות",
|
||||
"strength": {
|
||||
"weak": "חלשה",
|
||||
"fair": "סבירה",
|
||||
"good": "טובה",
|
||||
"strong": "חזקה",
|
||||
"excellent": "מצוינת"
|
||||
}
|
||||
},
|
||||
"tasks": {
|
||||
"title": "משימות",
|
||||
|
||||
@@ -17,7 +17,21 @@
|
||||
"registerBtn": "Зарегистрироваться",
|
||||
"noAccount": "Нет аккаунта?",
|
||||
"hasAccount": "Есть аккаунт?",
|
||||
"logout": "Выйти"
|
||||
"logout": "Выйти",
|
||||
"password": "Пароль",
|
||||
"confirmPassword": "Подтвердить пароль",
|
||||
"showPassword": "Показать",
|
||||
"hidePassword": "Скрыть",
|
||||
"forgotPassword": "Забыли пароль?",
|
||||
"passwordMinLength": "Пароль должен содержать не менее 6 символов",
|
||||
"passwordMismatch": "Пароли не совпадают",
|
||||
"strength": {
|
||||
"weak": "Слабый",
|
||||
"fair": "Сносный",
|
||||
"good": "Хороший",
|
||||
"strong": "Сильный",
|
||||
"excellent": "Отличный"
|
||||
}
|
||||
},
|
||||
"tasks": {
|
||||
"title": "Задачи",
|
||||
|
||||
@@ -17,7 +17,21 @@
|
||||
"registerBtn": "Зареєструватися",
|
||||
"noAccount": "Немає акаунту?",
|
||||
"hasAccount": "Є акаунт?",
|
||||
"logout": "Вийти"
|
||||
"logout": "Вийти",
|
||||
"password": "Пароль",
|
||||
"confirmPassword": "Підтвердити пароль",
|
||||
"showPassword": "Показати",
|
||||
"hidePassword": "Сховати",
|
||||
"forgotPassword": "Забули пароль?",
|
||||
"passwordMinLength": "Пароль має містити щонайменше 6 символів",
|
||||
"passwordMismatch": "Паролі не збігаються",
|
||||
"strength": {
|
||||
"weak": "Слабкий",
|
||||
"fair": "Задовільний",
|
||||
"good": "Добрий",
|
||||
"strong": "Сильний",
|
||||
"excellent": "Відмінний"
|
||||
}
|
||||
},
|
||||
"tasks": {
|
||||
"title": "Завдання",
|
||||
|
||||
Reference in New Issue
Block a user