Description

The Consent screen explains why information is collected and where and how the personal information being collected is used. It provides a link to the Privacy Policy of the organisation. It also contains the option to confirm consent and proceed with the onboarding process.

Default Consent screen

Consent screen.

Consent screen.

Configuration

Use the following table to learn more about configuration options for the Consent screen.

AttributeDescriptionUsage
nameThe name of the screen you want to loadname: "CONSENT"
typeThe type of flow to be used. In this use case, it needs to be "manual". type: "manual"
titleTitle of the page.
The default is "Your consent matters".

- label: the title text
- style: the title styling
title: {label: "<Your_TITLE>", style: {'ff-title': {}}}
descriptions[]An array of labels/texts for the consent notice and guidelines to be displayed on the page.

-label: string
-style: ff-description
descriptions: [{label: "", style: {}}, {label: "", style: {}}]
checkBoxThe checkbox information to be displayed at the bottom of the page. You can add an array of checkboxes.
The default is:
"I have read and agree to the above disclosure."

-style: ff-checkbox
-content: [
{-label: string}
]
content: [{label: }, {label: }]\
ctaThe button.

-label: the button text
-style: ff-button
cta: {label: "", style: {'ff-button':{backgroundColor: "red"}}}

Sample code

const form_consent = oneSdk.component("form", {
  name: "CONSENT",
  type: "manual",
  descriptions: [
    { 
      label: 'We will verify your ID against credit bureau data sources.'
    },
    { 
      label: 'Have your ID handy for verification.'
    },
  ],
  cta: {
    label: "Next"
  }
});

Events

Event nameDescriptionArguments
form:consent:loadedinputInfo: {type:'ocr'}
form:consent:readyUpon clicking on the button, this event will be triggered, and you can listen to it to load another screen.inputInfo: {type:'ocr'}
form:consent:failednputInfo: {type:'ocr'}, message?: string

Styling customisation

You can use the following classes to customise the styling for different elements of the page. These CSS classes apply to the common elements across all the screens. If you want to customise a specific page, you can use the above configuration options to overwrite it.

ItemCSS Class
titleff-title
descriptionsff-description
checkboxff-checkbox
buttonff-button

The following code shows you how to style a specific element on the page, in this example the button's background color will be green, instead of the default blue.

<style> 
    #<you_div_container> .ff-button {
      background-color: green;
    }
 </style>