diff options
author | Rohan Raj Gupta <[email protected]> | 2022-08-20 22:00:56 +0530 |
---|---|---|
committer | GitHub <[email protected]> | 2022-08-20 22:00:56 +0530 |
commit | 16fa778ffaf82f2807d8b1821b78b6d878b93cb8 (patch) | |
tree | 1e34bb9fdce552195a9cf0846ff9c080afa9aa6e /client/src/pages/Update/Otp | |
parent | 1926a54d1f7b8bc1ed690aaf8e3b679b41edce7b (diff) | |
parent | da56108f1dc51dbde756dd0f4cd3c96452aa0d18 (diff) |
Merge pull request #11 from Blaster4385/develop
update UI and language strings changes
Diffstat (limited to 'client/src/pages/Update/Otp')
-rw-r--r-- | client/src/pages/Update/Otp/Otp.jsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/src/pages/Update/Otp/Otp.jsx b/client/src/pages/Update/Otp/Otp.jsx index 2728ba3..31d8096 100644 --- a/client/src/pages/Update/Otp/Otp.jsx +++ b/client/src/pages/Update/Otp/Otp.jsx @@ -43,13 +43,13 @@ const Otp = () => { } return ( <> - <Header subheading="Update" /> + <Header subheading={`${t('UPDATE')}`} /> <div className={styles.subheading__container}> - <h3 className={styles.subheading}> Enter OTP </h3> + <h3 className={styles.subheading}> {t('ENTER_OTP')} </h3> <Input type="text" id="aadhaarNumber" - placeholder="Enter One Time Password" + placeholder={`${t('ENTER_OTP')}`} /> <Grid container columnSpacing={10} justifyContent="center"> <Grid item> @@ -60,7 +60,7 @@ const Otp = () => { variant="contained" onClick={() => {}} > - Verify OTP + {t('VERIFY_OTP')} </Button> </Grid> </Grid> |