summaryrefslogtreecommitdiff
path: root/client/src/pages/Enrollment/Agreement/Agreement.jsx
blob: 94303d523eabec5d3b86eff41ae3421a50c1fa14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import React from 'react'
import Header from '../../../components/Header/Header'
import CardAgreement from '../../../components/Card/CardAgreement'
import styles from './Agreement.module.css'
import Input from '../../../components/Input/Input'
import { Grid, Button } from '@mui/material'

const Agreement = () => {
  return (
    <>
      <Header subheading="Enrollment" />
      <div className={styles.card__container}>
        <CardAgreement
          image={`${process.env.PUBLIC_URL}/assets/images/agreement.svg`}
        />
      </div>
        <Input
        type="text"
        id="otp"
        label="Please verify your identity by receiving the OTP on your registered mobile number xxxxxxxx15"
        placeholder="XXXX"
      />
      <Grid container columnSpacing={10} justifyContent="center">
        <Grid item>
          <Button
            color="primary"
            size="large"
            type="submit"
            variant="contained"
          >
            Send OTP
          </Button>
        </Grid>
        <Grid item>
          <Button
            color="primary"
            size="large"
            type="submit"
            variant="contained"
          >
            Resend
          </Button>
        </Grid>
      </Grid>
    </>
  )
}

export default Agreement