diff --git a/package.json b/package.json index fb57ec3..d105297 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "opex", - "version": "v1.0.0-beta.4", + "version": "v1.0.1-beta.4", "homepage": "", "private": true, "dependencies": { diff --git a/public/assets/locales/en/translation.json b/public/assets/locales/en/translation.json index e04442a..56449bf 100644 --- a/public/assets/locales/en/translation.json +++ b/public/assets/locales/en/translation.json @@ -293,7 +293,7 @@ "maxWithdraw": "Your daily withdrawal limit", "maxMonthWithdraw": "Your monthly withdrawal limit", "withdrawWarn": "Please note! Incorrect entry of address can result in loss of capital.", - "withdrawReqSubmit": "withdraw withdrawal request", + "withdrawReqSubmit": "withdraw request", "destAddress": "Receive Address", "reqAmount": "Your Receipt", "network": "Network", diff --git a/src/index.css b/src/index.css index c6fdd79..890dd54 100644 --- a/src/index.css +++ b/src/index.css @@ -2580,10 +2580,12 @@ h6 { input { direction: rtl; + font-family: "IRANYekan", sans-serif; } .ltr input { direction: ltr; + font-family: 'Poppins', 'Roboto', sans-serif !important; } /* diff --git a/src/main/Mobile/Pages/Login/Login.js b/src/main/Mobile/Pages/Login/Login.js index 5137f55..e0ff3dd 100644 --- a/src/main/Mobile/Pages/Login/Login.js +++ b/src/main/Mobile/Pages/Login/Login.js @@ -25,7 +25,7 @@ const Login = () => { ]; return ( -
+
diff --git a/src/main/Mobile/Pages/Login/components/RegisterForm/RegisterForm.js b/src/main/Mobile/Pages/Login/components/RegisterForm/RegisterForm.js index 8c13d39..a1f09b0 100644 --- a/src/main/Mobile/Pages/Login/components/RegisterForm/RegisterForm.js +++ b/src/main/Mobile/Pages/Login/components/RegisterForm/RegisterForm.js @@ -256,7 +256,7 @@ const RegisterForm = () => { lead={t('password')} type={isInputVisible.password ? "text" : "password"} data-name="password" - autocomplete="new-password" + autoComplete="new-password" customClass={`${classes.loginInput} ${classes.ltrInput} ${classes.passwordInput}`} value={userData.password.value} onchange={(e) => inputHandler(e)} @@ -276,6 +276,7 @@ const RegisterForm = () => { lead={t('confirmPassword')} type={isInputVisible.confirmPassword ? "text" : "password"} data-name="confirmPassword" + autoComplete="new-password" customClass={`${classes.loginInput} ${classes.ltrInput} ${classes.passwordInput}`} value={userData.confirmPassword.value} onchange={(e) => inputHandler(e)} diff --git a/src/main/Mobile/Pages/User/components/ForgetPassword/ForgetPassword.js b/src/main/Mobile/Pages/User/components/ForgetPassword/ForgetPassword.js index 521c3ff..0798d5d 100644 --- a/src/main/Mobile/Pages/User/components/ForgetPassword/ForgetPassword.js +++ b/src/main/Mobile/Pages/User/components/ForgetPassword/ForgetPassword.js @@ -108,7 +108,7 @@ const ForgetPassword = () => { onClick={() => setIsInputVisible({ ...isInputVisible, newPassword: !isInputVisible.newPassword })} /> } - autocomplete="new-password" + autoComplete="new-password" type={isInputVisible.newPassword ? "text" : "password"} value={changePassword.newPassword.value} data-name="newPassword" @@ -126,7 +126,7 @@ const ForgetPassword = () => { onClick={() => setIsInputVisible({ ...isInputVisible, confirmation: !isInputVisible.confirmation })} /> } - autocomplete="off" + autoComplete="new-password" type={isInputVisible.confirmation ? "text" : "password"} value={changePassword.confirmation.value} data-name="confirmation" diff --git a/src/main/Mobile/Pages/UserPanel/Secttions/Content/components/Settings/components/Security/components/ChangePassword/ChangePassword.js b/src/main/Mobile/Pages/UserPanel/Secttions/Content/components/Settings/components/Security/components/ChangePassword/ChangePassword.js index 503d2aa..944b478 100644 --- a/src/main/Mobile/Pages/UserPanel/Secttions/Content/components/Settings/components/Security/components/ChangePassword/ChangePassword.js +++ b/src/main/Mobile/Pages/UserPanel/Secttions/Content/components/Settings/components/Security/components/ChangePassword/ChangePassword.js @@ -154,7 +154,7 @@ const ChangePassword = () => { })} /> } - autocomplete="new-password" + autoComplete="new-password" type={isInputVisible.newPassword ? "text" : "password"} value={userInputs.newPassword.value} data-name="newPassword" @@ -176,7 +176,7 @@ const ChangePassword = () => { })} /> } - autoComplete="off" + autoComplete="new-password" type={isInputVisible.confirmation ? "text" : "password"} value={userInputs.confirmation.value} data-name="confirmation" diff --git a/src/main/Mobile/Styles/Mobille.css b/src/main/Mobile/Styles/Mobille.css index e321f2c..6ce36aa 100644 --- a/src/main/Mobile/Styles/Mobille.css +++ b/src/main/Mobile/Styles/Mobille.css @@ -26,7 +26,6 @@ height: 5vh; border: none; border-radius: 7px; - font-family: "IRANYekan", serif; font-size: 3vw; color: #f2f2f2; }