@@ -49,7 +49,7 @@ const Index = () => {
- iAmSmart 成功登入
+ iAM Smart 成功登入
diff --git a/src/routes/LoginRoutes.js b/src/routes/LoginRoutes.js
index 593a51e..d39de08 100644
--- a/src/routes/LoginRoutes.js
+++ b/src/routes/LoginRoutes.js
@@ -12,6 +12,7 @@ const RegisterForm = Loadable(lazy(() => import('pages/authentication/Register')
const BusRegisterForm = Loadable(lazy(() => import('pages/authentication/BusRegister')));
const IAmSmartRegister = Loadable(lazy(() => import('pages/authentication/IAmSmartRegister')));
const ErrorPage = Loadable(lazy(() => import('pages/extra-pages/ErrorPage')));
+const IAmSmart_FallCallback = Loadable(lazy(() => import('pages/iAmSmart/FallCallback')));
const IAmSmart_FailCallback = Loadable(lazy(() => import('pages/iAmSmart/FailCallback')));
const IAmSmart_SuccessCallback = Loadable(lazy(() => import('pages/iAmSmart/SuccessCallback')));
const IAmSmart_AuthCallback = Loadable(lazy(() => import('pages/iAmSmart/AuthCallback')));
@@ -57,6 +58,10 @@ const LoginRoutes = {
path: 'error',
element:
},
+ {
+ path: 'iamsmart/loginfallback',
+ element:
+ },
{
path: 'iamsmart/authcallback',
element:
diff --git a/src/translations/en.json b/src/translations/en.json
index e8904e4..af202e5 100644
--- a/src/translations/en.json
+++ b/src/translations/en.json
@@ -21,7 +21,7 @@
"companyOrUserRecord": "Company/Institutional User Records",
"login": "Login",
- "iAmSmartLogin": "iAmSmart login",
+ "iAmSmartLogin": "iAM Smart Login",
"continueWithIAmSmart": "Continue with iAmSmart",
"authorizeIAmSmartForInfo": "Authorize iAmSmart to provide personal information",
"iAmSmartSubTitle": "In order to complete the account opening and establish a connection with \"iAmStart\", please authorize \"iAmSmart\" to provide the following personal information:",
@@ -85,19 +85,6 @@
"pleaseEnterOrgOrCompName": "Please enter the English/Chinese name of the organisation/company",
"sameAsBusinessRegistrationCert": "Same as Business Registration Certificate",
"businessRegCertNumber": "Business Reg Cert Number",
- "businessRegCertAndDoc":"Business Registration Certificate and other documents",
- "pleaseUploadDoc": "Please upload a digital file of your valid business registration certificate and other documents to verify your identity.",
- "uploadFile": "Upload business registration certificate and other documents",
- "fileName": "File name",
- "fileSize": "File size",
- "fileSizeWarning": "Upload file size should be <10MB",
- "noFile": "No file uploaded",
- "termsAndCondition": "Terms and Conditions",
- "acceptTerms": "I accept",
- "rejectTerms": "I do not accept",
- "verify": "Verify",
- "validVerify": "Please enter valid verification",
- "autoLogout": "Login verification has expired, please login again.",
"pleaseFillInBusinessRegCertNumber": "Please fill in Business Registration Certificate Number",
"pleaseFillInValidBusinessRegCertNumber": "Please fill in valid Business Registration Certificate Number",
"businessRegCertValidityDate": "Business Reg Cert validity date",
@@ -106,23 +93,6 @@
"addressLine1": "First line",
"addressLine2": "Second line",
"addressLine3": "Third line",
- "validateAddressLine1": "Please enter the first line of address",
- "validateAddressLine2": "Please enter the second line of address",
- "validateAddressLine3": "Please enter the third line of address",
- "validateEngOrChiName": "Please enter the English or Chinese name",
- "notContainSpecialChar": "Does not contain special characters $/^/*/(/)",
- "samePassword": "Please enter the same password",
- "atLeast8CharPassword": "Please enter a password of at least 8 digits",
- "atLeast1SpecialChar": "Please include at least 1 special character",
- "atLeast1Number": "Please include at least 1 number",
- "atLeastOneCapLetter": "Please include at least 1 capital letter",
- "atLeastOneSmallLetter": "Please include at least 1 lowercase letter",
- "noSpacePassword": "Password does not contain spaces",
- "noSpaceAccount": "User name does not contain spaces",
- "noSpecialCharAccount": "User name does not contain special characters",
- "atLeast6CharAccount": "User name must be at least 6 characters",
- "requireUsername": "Please enter user name",
- "requirePassword": "Please enter password",
"region": "Region (only applicable to Hong Kong)",
"regionOrCountry": "Country/Region",
"hongKong": "Hong Kong",
diff --git a/src/utils/ComboData.js b/src/utils/ComboData.js
index bab6e29..bfff964 100644
--- a/src/utils/ComboData.js
+++ b/src/utils/ComboData.js
@@ -89,6 +89,12 @@ export const denmandNoteStatus = [
{ key: 1, labelCht: '待辦', label:'Pending', type: 'pending' },
{ key: 2, labelCht: '待支付', label:'To be Paid', type: 'to be paid' },
{ key: 3, labelCht: '已付費', label:'Paid', type: 'paid' },
+];
+
+export const denmandNoteStatus_Public = [
+ { key: 0, labelCht: '全部', label: 'All', type: 'all' },
+ { key: 2, labelCht: '待支付', label:'To be Paid', type: 'to be paid' },
+ { key: 3, labelCht: '已付費', label:'Paid', type: 'paid' },
];