diff options
author | rohan09-raj <[email protected]> | 2022-08-18 16:12:35 +0530 |
---|---|---|
committer | rohan09-raj <[email protected]> | 2022-08-18 16:12:35 +0530 |
commit | 0a1a985de6e9a53896d2ba17e26d042009b3e1b4 (patch) | |
tree | 133d50eb69452171868b38988c6a10c9367ce171 /client/src/pages/Update/Update.jsx | |
parent | 6b85ebee8986b982e05d49c8f1a326deb3e08bae (diff) |
Condtional update handling
Diffstat (limited to 'client/src/pages/Update/Update.jsx')
-rw-r--r-- | client/src/pages/Update/Update.jsx | 29 |
1 files changed, 6 insertions, 23 deletions
diff --git a/client/src/pages/Update/Update.jsx b/client/src/pages/Update/Update.jsx index eb0aa58..63343f1 100644 --- a/client/src/pages/Update/Update.jsx +++ b/client/src/pages/Update/Update.jsx @@ -1,13 +1,14 @@ import React from 'react' -import { useNavigate } from 'react-router-dom' import Header from '../../components/Header/Header' import styles from './Update.module.css' import Input from '../../components/Input/Input' import { Grid, Button } from '@mui/material' import { userContext } from '../../context/User' +import { useNavigate } from 'react-router-dom' const Update = () => { const { aadhaarNumber, setAadhaarNumber } = userContext() + const navigate = useNavigate() return ( @@ -30,29 +31,11 @@ const Update = () => { size="large" type="submit" variant="contained" + onClick={() => { + navigate('/update/otp') + }} > - Send OTP - </Button> - </Grid> - </Grid> - </div> - <div className={styles.subheading__container}> - <h3 className={styles.subheading}> Enter OTP </h3> - <Input - type="text" - id="aadhaarNumber" - placeholder="Enter One Time Password" - /> - <Grid container columnSpacing={10} justifyContent="center"> - <Grid item> - <Button - color="primary" - size="large" - type="submit" - variant="contained" - onClick={() => navigate('/update/select-update')} - > - Verify OTP + Submit </Button> </Grid> </Grid> |