diff --git a/src/app/[locale]/auth/forget/ForgetForm.tsx b/src/app/[locale]/auth/forget/ForgetForm.tsx
index 0907e18..30bdefa 100644
--- a/src/app/[locale]/auth/forget/ForgetForm.tsx
+++ b/src/app/[locale]/auth/forget/ForgetForm.tsx
@@ -1,7 +1,188 @@
-import React from "react";
+"use client";
+import LanguageSwitcher from "@/components/LanguageSwitcher";
+import { useTranslations } from "next-intl";
+import Link from "next/link";
+import React, { useEffect, useState } from "react";
const ForgetForm = () => {
- return
diff --git a/src/app/[locale]/auth/signup/SignupForm.tsx b/src/app/[locale]/auth/signup/SignupForm.tsx
index e5298d1..2b27578 100644
--- a/src/app/[locale]/auth/signup/SignupForm.tsx
+++ b/src/app/[locale]/auth/signup/SignupForm.tsx
@@ -169,10 +169,7 @@ const SignupForm = () => {
diff --git a/src/languages/en.json b/src/languages/en.json
index 799e0f3..372f14d 100644
--- a/src/languages/en.json
+++ b/src/languages/en.json
@@ -15,6 +15,10 @@
"confirm_password": "Confirm Password",
"already_have": "Already have an account?",
"verify_code": "Verify Code",
- "send_code": "Send"
+ "send_code": "Send",
+ "forget_title": "Forget",
+ "reset_password": "Reset Password",
+ "new_password": "New Password",
+ "confirm_new_password": "Confirm New Password"
}
}
diff --git a/src/languages/zh-HK.json b/src/languages/zh-HK.json
index 2ad989d..f5c6b17 100644
--- a/src/languages/zh-HK.json
+++ b/src/languages/zh-HK.json
@@ -5,7 +5,7 @@
"Auth": {
"title": "登錄",
"subtitle": "如果您已有帳號,請登錄",
- "email": "電子郵件",
+ "email": "電子郵箱",
"password": "密碼",
"login": "登錄",
"forget": "忘記密碼?",
@@ -15,6 +15,10 @@
"confirm_password": "確認密碼",
"already_have": "已有帳號?",
"verify_code": "驗證碼",
- "send_code": "發送"
+ "send_code": "發送",
+ "forget_title": "忘記密碼",
+ "reset_password": "重設密碼",
+ "new_password": "新密碼",
+ "confirm_new_password": "確認新密碼"
}
}