summaryrefslogtreecommitdiff
path: root/client/src/pages/Enrollment/FormOne
diff options
context:
space:
mode:
authorrohan09-raj <[email protected]>2022-08-21 20:05:34 +0530
committerrohan09-raj <[email protected]>2022-08-21 20:05:34 +0530
commit02936bcdabb5e2550b12fa94d435fdbcff348f71 (patch)
tree6bfe880a07686c4b4183f42a936697bc5c7926d8 /client/src/pages/Enrollment/FormOne
parenta49c7aefc99a1e0584cb0b3fb08d028b65dc35d9 (diff)
added modal
Diffstat (limited to 'client/src/pages/Enrollment/FormOne')
-rw-r--r--client/src/pages/Enrollment/FormOne/FormOne.jsx23
-rw-r--r--client/src/pages/Enrollment/FormOne/FormOne.module.css2
2 files changed, 24 insertions, 1 deletions
diff --git a/client/src/pages/Enrollment/FormOne/FormOne.jsx b/client/src/pages/Enrollment/FormOne/FormOne.jsx
index f601921..3fd5a21 100644
--- a/client/src/pages/Enrollment/FormOne/FormOne.jsx
+++ b/client/src/pages/Enrollment/FormOne/FormOne.jsx
@@ -5,6 +5,7 @@ import Input from '../../../components/Input/Input'
import LabelCard from '../../../components/LabelCard/LabelCard'
import styles from './FormOne.module.css'
import { userContext } from '../../../context/User'
+import PopUpModal from '../../../components/Modal/Modal'
const FormOne = () => {
const { t } = useTranslation()
@@ -33,6 +34,28 @@ const FormOne = () => {
return (
<>
<Header subheading={t('ENROLLMENT')} />
+ <PopUpModal
+ title="Fill your information"
+ image={`${process.env.PUBLIC_URL}/assets/images/id.svg`}
+ description={
+ <>
+ <ul>
+ <li className="list__item">
+ Select your residency by selecting the appropriate checkbox
+ </li>
+ <li className="list__item">
+ Enter your full name without any title or salutation
+ </li>
+ <li className="list__item">
+ Select your gender by clicking on the appropriate card
+ </li>
+ <li className="list__item">
+ Select your date of birth from the provided calender
+ </li>
+ </ul>
+ </>
+ }
+ />
<div className={styles.formone}>
<div className={styles.formone__radio}>
<span className={styles.formone__resident}>
diff --git a/client/src/pages/Enrollment/FormOne/FormOne.module.css b/client/src/pages/Enrollment/FormOne/FormOne.module.css
index fae8e9f..646ea12 100644
--- a/client/src/pages/Enrollment/FormOne/FormOne.module.css
+++ b/client/src/pages/Enrollment/FormOne/FormOne.module.css
@@ -45,7 +45,7 @@
}
.formone__dob_input {
- width: 300px;
+ width: 330px;
margin: 10px 0px;
padding: 11px 10px;
border: 3px solid;