Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "opex",
"version": "v1.0.0-beta.4",
"version": "v1.0.1-beta.4",
"homepage": "",
"private": true,
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion public/assets/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 2 additions & 0 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -2580,10 +2580,12 @@ h6 {

input {
direction: rtl;
font-family: "IRANYekan", sans-serif;
}

.ltr input {
direction: ltr;
font-family: 'Poppins', 'Roboto', sans-serif !important;
}

/*
Expand Down
2 changes: 1 addition & 1 deletion src/main/Mobile/Pages/Login/Login.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const Login = () => {
];

return (
<div className={`width-100 flex ai-center jc-center px-1 ${classes.container} move-image`} style={{backgroundImage: `url("${images.spaceStar}")`}}>
<div className={`width-100 flex ai-center jc-center px-1 ${classes.container}`} style={{backgroundImage: `url("${images.spaceStar}")`}}>

<div className={`${classes.content}`}>
<AccordionBox title={t('login.title')} content={data}/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)}
Expand All @@ -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)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ const ChangePassword = () => {
})}
/>
}
autocomplete="new-password"
autoComplete="new-password"
type={isInputVisible.newPassword ? "text" : "password"}
value={userInputs.newPassword.value}
data-name="newPassword"
Expand All @@ -176,7 +176,7 @@ const ChangePassword = () => {
})}
/>
}
autoComplete="off"
autoComplete="new-password"
type={isInputVisible.confirmation ? "text" : "password"}
value={userInputs.confirmation.value}
data-name="confirmation"
Expand Down
1 change: 0 additions & 1 deletion src/main/Mobile/Styles/Mobille.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
height: 5vh;
border: none;
border-radius: 7px;
font-family: "IRANYekan", serif;
font-size: 3vw;
color: #f2f2f2;
}
Expand Down