summaryrefslogtreecommitdiff
path: root/client/src/pages/Update/IrisScan
diff options
context:
space:
mode:
authorBlaster4385 <[email protected]>2022-08-13 21:40:17 +0530
committerBlaster4385 <[email protected]>2022-08-13 21:41:37 +0530
commitec423572aaf8ecf80a409fd9a03d73b5d31e444f (patch)
tree8c333eac18de5dea8be9c863a0fc8abd3d0bafff /client/src/pages/Update/IrisScan
parent3673947d4905948de2e466a813019b1de9629bd2 (diff)
Implemented update UI
Diffstat (limited to 'client/src/pages/Update/IrisScan')
-rw-r--r--client/src/pages/Update/IrisScan/IrisScan.jsx57
-rw-r--r--client/src/pages/Update/IrisScan/IrisScan.module.css5
2 files changed, 62 insertions, 0 deletions
diff --git a/client/src/pages/Update/IrisScan/IrisScan.jsx b/client/src/pages/Update/IrisScan/IrisScan.jsx
new file mode 100644
index 0000000..c07e9b8
--- /dev/null
+++ b/client/src/pages/Update/IrisScan/IrisScan.jsx
@@ -0,0 +1,57 @@
+import React from 'react'
+import Header from '../../../components/Header/Header'
+import CardBiometrics from '../../../components/Card/CardBiometrics'
+import styles from './IrisScan.module.css'
+import { Button, Grid, Typography } from '@mui/material'
+import SubmitButton from '../../../components/SubmitButton/SubmitButton'
+
+const IrisScan = () => {
+ return (
+ <>
+ <Header subheading="Enrollment" />
+ <div className={styles.card__container}>
+ <CardBiometrics
+ image={`${process.env.PUBLIC_URL}/assets/images/iris.svg`}
+ />
+ <CardBiometrics
+ image={`${process.env.PUBLIC_URL}/assets/images/iris.svg`}
+ />
+ </div>
+ <Grid container columnSpacing={10} justifyContent="center">
+ <Grid item>
+ <Button
+ color="primary"
+ size="large"
+ type="submit"
+ variant="contained"
+ >
+ Scan
+ </Button>
+ </Grid>
+ <Grid item>
+ <Button
+ color="primary"
+ size="large"
+ type="submit"
+ variant="contained"
+ >
+ Reset
+ </Button>
+ </Grid>
+ </Grid>
+ <br></br>
+ <div>
+ <Grid container justifyContent="center">
+ <Typography align="center">
+ Please put your eyes inside the iris scanner.
+ <br />
+ Wait for prompt and beep sound to remove your eyes
+ </Typography>
+ </Grid>
+ </div>
+ <SubmitButton />
+ </>
+ )
+}
+
+export default IrisScan
diff --git a/client/src/pages/Update/IrisScan/IrisScan.module.css b/client/src/pages/Update/IrisScan/IrisScan.module.css
new file mode 100644
index 0000000..ec59f61
--- /dev/null
+++ b/client/src/pages/Update/IrisScan/IrisScan.module.css
@@ -0,0 +1,5 @@
+.card__container {
+ display: flex;
+ justify-content: center;
+ }
+ \ No newline at end of file