From 905dc038ca2e4bbb315c4c583c94a96948e68fa9 Mon Sep 17 00:00:00 2001 From: Blaster4385 Date: Tue, 2 Aug 2022 08:56:48 +0530 Subject: Add remaining pages --- client/src/components/Card/CardAgreement.jsx | 20 +++++++++++++++ .../src/components/Card/CardAgreement.module.css | 30 ++++++++++++++++++++++ client/src/components/Card/CardBiometrics.jsx | 16 ++++++++++++ .../src/components/Card/CardBiometrics.module.css | 26 +++++++++++++++++++ 4 files changed, 92 insertions(+) create mode 100644 client/src/components/Card/CardAgreement.jsx create mode 100644 client/src/components/Card/CardAgreement.module.css create mode 100644 client/src/components/Card/CardBiometrics.jsx create mode 100644 client/src/components/Card/CardBiometrics.module.css (limited to 'client/src/components') diff --git a/client/src/components/Card/CardAgreement.jsx b/client/src/components/Card/CardAgreement.jsx new file mode 100644 index 0000000..245cdbb --- /dev/null +++ b/client/src/components/Card/CardAgreement.jsx @@ -0,0 +1,20 @@ +import React from 'react' +import styles from './CardAgreement.module.css' +import SubmitButton from '../SubmitButton/SubmitButton' +import { Typography } from '@mui/material' + +const CardAgreement = ({ title, image }) => { + return ( + <> +
+ + + I hereby confirm the identity and address of ___________ as being true, correct and accurate. + +
+ + + ) +} + +export default CardAgreement diff --git a/client/src/components/Card/CardAgreement.module.css b/client/src/components/Card/CardAgreement.module.css new file mode 100644 index 0000000..ed36cba --- /dev/null +++ b/client/src/components/Card/CardAgreement.module.css @@ -0,0 +1,30 @@ +@import '../../styles/GlobalVariables.css'; + +.card { + height: 400px; + width: 900px; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + border: 3px solid var(--color-black); + border-radius: 10px; + margin: 30px; + transition: 0.2s all; + cursor: pointer; + color: var(--color-black); + text-decoration-line: none; +} + +.card:active { + transform: scale(0.98); + box-shadow: 3px 2px 22px 1px var(--color-shadow); +} + +.card__title { + margin: 15px 0px; +} + +.card__image { + padding-bottom: 32px; +} \ No newline at end of file diff --git a/client/src/components/Card/CardBiometrics.jsx b/client/src/components/Card/CardBiometrics.jsx new file mode 100644 index 0000000..49a913e --- /dev/null +++ b/client/src/components/Card/CardBiometrics.jsx @@ -0,0 +1,16 @@ +import React from 'react' +import styles from './CardBiometrics.module.css' +import SubmitButton from '../SubmitButton/SubmitButton' + +const CardBiometrics = ({ title, image }) => { + return ( + <> +
+ +
+ + + ) +} + +export default CardBiometrics diff --git a/client/src/components/Card/CardBiometrics.module.css b/client/src/components/Card/CardBiometrics.module.css new file mode 100644 index 0000000..13bbbef --- /dev/null +++ b/client/src/components/Card/CardBiometrics.module.css @@ -0,0 +1,26 @@ +@import '../../styles/GlobalVariables.css'; + +.card { + height: 300px; + width: 300px; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + border: 3px solid var(--color-black); + border-radius: 10px; + margin: 30px; + transition: 0.2s all; + cursor: pointer; + color: var(--color-black); + text-decoration-line: none; +} + +.card:active { + transform: scale(0.98); + box-shadow: 3px 2px 22px 1px var(--color-shadow); +} + +.card__title { + margin: 15px 0px; +} \ No newline at end of file -- cgit