| @@ -70,16 +70,22 @@ const Index = () => { | |||||
| navigate('/dashboard'); | navigate('/dashboard'); | ||||
| }, | }, | ||||
| onFail: (response)=>{ | onFail: (response)=>{ | ||||
| console.log("Fail"); | |||||
| console.log("onFail"); | |||||
| console.log(response); | console.log(response); | ||||
| window.location.assign("/iamsmart/loginFail"); | window.location.assign("/iamsmart/loginFail"); | ||||
| }, | }, | ||||
| onError:(error)=>{ | onError:(error)=>{ | ||||
| console.log("onError"); | |||||
| console.log(error); | console.log(error); | ||||
| window.location.assign("/iamsmart/loginFail"); | |||||
| if(error?.response?.data?.exception == "msg: please verify email."){ | |||||
| window.location.assign("/iamsmart/notverify"); | |||||
| }else{ | |||||
| window.location.assign("/iamsmart/loginFail"); | |||||
| } | |||||
| } | } | ||||
| }); | }); | ||||
| }else{ | }else{ | ||||
| console.log("Fail"); | |||||
| window.location.assign("/iamsmart/loginFail"); | window.location.assign("/iamsmart/loginFail"); | ||||
| } | } | ||||
| } | } | ||||
| @@ -57,8 +57,13 @@ const Index = () => { | |||||
| window.location.assign("/iamsmart/loginFail"); | window.location.assign("/iamsmart/loginFail"); | ||||
| }, | }, | ||||
| onError:(error)=>{ | onError:(error)=>{ | ||||
| console.log("onError"); | |||||
| console.log(error); | console.log(error); | ||||
| window.location.assign("/iamsmart/loginFail"); | |||||
| if(error?.response?.data?.exception == "msg: please verify email."){ | |||||
| window.location.assign("/iamsmart/notverify"); | |||||
| }else{ | |||||
| window.location.assign("/iamsmart/loginFail"); | |||||
| } | |||||
| } | } | ||||
| }); | }); | ||||
| }else{ | }else{ | ||||
| @@ -6,7 +6,7 @@ import { | |||||
| } from '@mui/material'; | } from '@mui/material'; | ||||
| import * as React from "react"; | import * as React from "react"; | ||||
| import { useNavigate } from "react-router-dom"; | import { useNavigate } from "react-router-dom"; | ||||
| import { FormattedMessage } from "react-intl"; | |||||
| import Loadable from 'components/Loadable'; | import Loadable from 'components/Loadable'; | ||||
| const LoadingComponent = Loadable(React.lazy(() => import('pages/extra-pages/LoadingComponent'))); | const LoadingComponent = Loadable(React.lazy(() => import('pages/extra-pages/LoadingComponent'))); | ||||
| @@ -30,32 +30,42 @@ const Index = () => { | |||||
| </Grid> | </Grid> | ||||
| </Grid> | </Grid> | ||||
| : | : | ||||
| <Grid container sx={{ height: '100%', backgroundColor: '#fff' }} direction="column" justifyContent="flex-start" alignItems="center" > | |||||
| <Grid item xs={12} md={12} > | |||||
| <Grid container justifyContent="flex-start" alignItems="center" > | |||||
| <center> | |||||
| <Grid item xs={12} md={12} > | |||||
| <Typography variant="h3" sx={{ ml: 8, mt: 4, mr: 8, textAlign: "center" }}> | |||||
| 登入失敗,請重試。 | |||||
| </Typography> | |||||
| <Button | |||||
| component="span" | |||||
| variant="contained" | |||||
| size="large" | |||||
| sx={{ m: 4 }} | |||||
| onClick={() => { | |||||
| navigate("/login"); | |||||
| }} | |||||
| >返回登入</Button> | |||||
| </Grid> | |||||
| </center> | |||||
| </Grid> | |||||
| <Grid container sx={{ height: '100%', backgroundColor: '#fff' }} direction="column" justifyContent="flex-start" alignItems="center" > | |||||
| <Grid item xs={12} md={12} > | |||||
| <Grid container justifyContent="flex-start" alignItems="center" > | |||||
| <center> | |||||
| <Grid item xs={12} md={12} > | |||||
| <Typography variant="h3" sx={{ ml: 8, mt: 4, mr: 8, textAlign: "center" }}> | |||||
| <FormattedMessage id="loginErrorMessage6" /> | |||||
| </Typography> | |||||
| <Button | |||||
| component="span" | |||||
| variant="contained" | |||||
| size="large" | |||||
| sx={{ m: 4 }} | |||||
| onClick={() => { | |||||
| navigate("/login"); | |||||
| }} | |||||
| ><FormattedMessage id="backToLogin" /></Button> | |||||
| <Button | |||||
| component="span" | |||||
| variant="contained" | |||||
| size="large" | |||||
| sx={{ m: 4 }} | |||||
| onClick={() => { | |||||
| navigate("/register"); | |||||
| }} | |||||
| ><FormattedMessage id="goRegister" /></Button> | |||||
| </Grid> | |||||
| </center> | |||||
| </Grid> | </Grid> | ||||
| {/*row 2*/} | |||||
| </Grid > | |||||
| </Grid> | |||||
| {/*row 2*/} | |||||
| </Grid > | |||||
| ); | ); | ||||
| }; | }; | ||||
| @@ -26,6 +26,7 @@ const ForgotUsername_Success = Loadable(lazy(() => import('pages/authentication/ | |||||
| const IAmSmart_DirectLoginCallback = Loadable(lazy(() => import('pages/iAmSmart/DirectLoginCallback'))); | const IAmSmart_DirectLoginCallback = Loadable(lazy(() => import('pages/iAmSmart/DirectLoginCallback'))); | ||||
| //const IAmSmart_FallCallback = Loadable(lazy(() => import('pages/iAmSmart/FallCallback'))); | //const IAmSmart_FallCallback = Loadable(lazy(() => import('pages/iAmSmart/FallCallback'))); | ||||
| const IAmSmart_FailCallback = Loadable(lazy(() => import('pages/iAmSmart/FailCallback'))); | const IAmSmart_FailCallback = Loadable(lazy(() => import('pages/iAmSmart/FailCallback'))); | ||||
| const FailCallback_VerifyMail = Loadable(lazy(() => import('pages/iAmSmart/FailCallback_VerifyMail'))); | |||||
| const IAmSmart_SuccessCallback = Loadable(lazy(() => import('pages/iAmSmart/SuccessCallback'))); | const IAmSmart_SuccessCallback = Loadable(lazy(() => import('pages/iAmSmart/SuccessCallback'))); | ||||
| const IAmSmart_AuthCallback = Loadable(lazy(() => import('pages/iAmSmart/AuthCallback'))); | const IAmSmart_AuthCallback = Loadable(lazy(() => import('pages/iAmSmart/AuthCallback'))); | ||||
| const IAmSmart_RegistryCallback = Loadable(lazy(() => import('pages/iAmSmart/RegistryCallback'))); | const IAmSmart_RegistryCallback = Loadable(lazy(() => import('pages/iAmSmart/RegistryCallback'))); | ||||
| @@ -73,6 +74,10 @@ const LoginRoutes = { | |||||
| path: 'iamsmart/loginfallback', | path: 'iamsmart/loginfallback', | ||||
| element: <IAmSmart_FailCallback/> | element: <IAmSmart_FailCallback/> | ||||
| }, | }, | ||||
| { | |||||
| path: 'iamsmart/notverify', | |||||
| element: <FailCallback_VerifyMail/> | |||||
| }, | |||||
| { | { | ||||
| path: 'iamsmart/authcallback', | path: 'iamsmart/authcallback', | ||||
| element: <IAmSmart_AuthCallback/> | element: <IAmSmart_AuthCallback/> | ||||
| @@ -84,6 +84,7 @@ | |||||
| "continue": "Continue", | "continue": "Continue", | ||||
| "submit": "Submit", | "submit": "Submit", | ||||
| "backToLogin": "Return to login page", | "backToLogin": "Return to login page", | ||||
| "goRegister": "Register an account", | |||||
| "registerSubmitted": "Account application submitted successfully.", | "registerSubmitted": "Account application submitted successfully.", | ||||
| "registerFail": "Application failed, please try again later", | "registerFail": "Application failed, please try again later", | ||||
| "iAmSmartNoIdNoMsg": "Invalid information, please return to the registration page.", | "iAmSmartNoIdNoMsg": "Invalid information, please return to the registration page.", | ||||
| @@ -125,6 +126,7 @@ | |||||
| "loginErrorMessage3":"Account has not been Verified", | "loginErrorMessage3":"Account has not been Verified", | ||||
| "loginErrorMessage4":"System Connection Failed", | "loginErrorMessage4":"System Connection Failed", | ||||
| "loginErrorMessage5":"Incorrect Username or Password", | "loginErrorMessage5":"Incorrect Username or Password", | ||||
| "loginErrorMessage6":"Login fail, please try again", | |||||
| "newPassword": "New Password", | "newPassword": "New Password", | ||||
| "setNewPassword": "Please enter new password", | "setNewPassword": "Please enter new password", | ||||
| @@ -83,6 +83,7 @@ | |||||
| "continue": "继续", | "continue": "继续", | ||||
| "submit": "提交", | "submit": "提交", | ||||
| "backToLogin": "返回登入页面", | "backToLogin": "返回登入页面", | ||||
| "goRegister": "帐户申请", | |||||
| "registerSubmitted": "帐户申请已成功提交。", | "registerSubmitted": "帐户申请已成功提交。", | ||||
| "registerFail": "申请失败,请稍后尝试", | "registerFail": "申请失败,请稍后尝试", | ||||
| "iAmSmartNoIdNoMsg": "无效资料,请返回注册页面。", | "iAmSmartNoIdNoMsg": "无效资料,请返回注册页面。", | ||||
| @@ -123,6 +124,7 @@ | |||||
| "loginErrorMessage3":"帐户尚未验证", | "loginErrorMessage3":"帐户尚未验证", | ||||
| "loginErrorMessage4":"系统连接失败", | "loginErrorMessage4":"系统连接失败", | ||||
| "loginErrorMessage5":"用户名或密码错误", | "loginErrorMessage5":"用户名或密码错误", | ||||
| "loginErrorMessage6":"登入失败,请重试", | |||||
| "newPassword": "新密码", | "newPassword": "新密码", | ||||
| "setNewPassword": "请输入新密码", | "setNewPassword": "请输入新密码", | ||||
| @@ -83,6 +83,7 @@ | |||||
| "continue": "繼續", | "continue": "繼續", | ||||
| "submit": "提交", | "submit": "提交", | ||||
| "backToLogin": "返回登入頁面", | "backToLogin": "返回登入頁面", | ||||
| "goRegister": "帳戶申請", | |||||
| "registerSubmitted": "帳戶申請已成功提交。", | "registerSubmitted": "帳戶申請已成功提交。", | ||||
| "registerFail": "申請失敗,請稍後嘗試", | "registerFail": "申請失敗,請稍後嘗試", | ||||
| "iAmSmartNoIdNoMsg": "無效資料,請返回注冊頁面。", | "iAmSmartNoIdNoMsg": "無效資料,請返回注冊頁面。", | ||||
| @@ -123,6 +124,7 @@ | |||||
| "loginErrorMessage3":"帳戶尚未驗證", | "loginErrorMessage3":"帳戶尚未驗證", | ||||
| "loginErrorMessage4":"系統連接失敗", | "loginErrorMessage4":"系統連接失敗", | ||||
| "loginErrorMessage5":"用戶名或密碼錯誤", | "loginErrorMessage5":"用戶名或密碼錯誤", | ||||
| "loginErrorMessage6":"登入失敗,請重試", | |||||
| "newPassword": "新密碼", | "newPassword": "新密碼", | ||||
| "setNewPassword": "請輸入新密碼", | "setNewPassword": "請輸入新密碼", | ||||