From ec423572aaf8ecf80a409fd9a03d73b5d31e444f Mon Sep 17 00:00:00 2001 From: Blaster4385 Date: Sat, 13 Aug 2022 21:40:17 +0530 Subject: Implemented update UI --- client/src/pages/Update/IrisScan/IrisScan.jsx | 57 +++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 client/src/pages/Update/IrisScan/IrisScan.jsx (limited to 'client/src/pages/Update/IrisScan/IrisScan.jsx') 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 ( + <> +
+
+ + +
+ + + + + + + + +

+
+ + + Please put your eyes inside the iris scanner. +
+ Wait for prompt and beep sound to remove your eyes +
+
+
+ + + ) +} + +export default IrisScan -- cgit