diff options
author | rohan09-raj <[email protected]> | 2022-08-21 20:05:34 +0530 |
---|---|---|
committer | rohan09-raj <[email protected]> | 2022-08-21 20:05:34 +0530 |
commit | 02936bcdabb5e2550b12fa94d435fdbcff348f71 (patch) | |
tree | 6bfe880a07686c4b4183f42a936697bc5c7926d8 /client/src/pages/Enrollment/Agreement/Agreement.jsx | |
parent | a49c7aefc99a1e0584cb0b3fb08d028b65dc35d9 (diff) |
added modal
Diffstat (limited to 'client/src/pages/Enrollment/Agreement/Agreement.jsx')
-rw-r--r-- | client/src/pages/Enrollment/Agreement/Agreement.jsx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/client/src/pages/Enrollment/Agreement/Agreement.jsx b/client/src/pages/Enrollment/Agreement/Agreement.jsx index 15bb639..9dedb56 100644 --- a/client/src/pages/Enrollment/Agreement/Agreement.jsx +++ b/client/src/pages/Enrollment/Agreement/Agreement.jsx @@ -9,6 +9,7 @@ import { sendOTP } from '../../../services/apiservice' import { userContext } from '../../../context/User' import { useMutation } from 'react-query' import { ToastContainer, toast } from 'react-toastify' +import PopUpModal from '../../../components/Modal/Modal' import 'react-toastify/dist/ReactToastify.css' const Agreement = ({ unverified, setUnverified }) => { @@ -53,6 +54,17 @@ const Agreement = ({ unverified, setUnverified }) => { theme={'colored'} /> <Header subheading={t('ENROLLMENT')} /> + <PopUpModal + title="Verify your mobile number" + image={`${process.env.PUBLIC_URL}/assets/images/agreement.svg`} + description={ + <> + <ul> + <li className="list__item">INSTRUCTIONS TO BE ADDED</li> + </ul> + </> + } + /> <div className={styles.card__container}> <CardAgreement image={`${process.env.PUBLIC_URL}/assets/images/agreement.svg`} |