diff options
author | Blaster4385 <venkateshchaturvedi12@gmail.com> | 2022-08-02 08:56:48 +0530 |
---|---|---|
committer | Blaster4385 <venkateshchaturvedi12@gmail.com> | 2022-08-02 08:56:48 +0530 |
commit | 905dc038ca2e4bbb315c4c583c94a96948e68fa9 (patch) | |
tree | ce04b0994c171e9f1c939dd91aa2f05d2c03a9f7 /client/src/pages/Enrollment/IrisScan | |
parent | 5f8f6f98c2c47ca878aadb893b0d64a0c66316aa (diff) |
Add remaining pages
Diffstat (limited to 'client/src/pages/Enrollment/IrisScan')
-rw-r--r-- | client/src/pages/Enrollment/IrisScan/IrisScan.jsx | 57 | ||||
-rw-r--r-- | client/src/pages/Enrollment/IrisScan/IrisScan.module.css | 5 |
2 files changed, 62 insertions, 0 deletions
diff --git a/client/src/pages/Enrollment/IrisScan/IrisScan.jsx b/client/src/pages/Enrollment/IrisScan/IrisScan.jsx new file mode 100644 index 0000000..c07e9b8 --- /dev/null +++ b/client/src/pages/Enrollment/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/Enrollment/IrisScan/IrisScan.module.css b/client/src/pages/Enrollment/IrisScan/IrisScan.module.css new file mode 100644 index 0000000..ec59f61 --- /dev/null +++ b/client/src/pages/Enrollment/IrisScan/IrisScan.module.css @@ -0,0 +1,5 @@ +.card__container { + display: flex; + justify-content: center; + } +
\ No newline at end of file |