Consent Page
Overview
The client has the option to change the text in about us page of Fize modal by using about_us_page property.
Property | Type | Default Value |
---|---|---|
title_text | string | {{display_name}} is ready to check to check your current insurance coverage |
security_section_header_text | string | Connect securely |
security_section_body_text | string | Your data is end-to-end, military grade 256 bit AES key encrypted |
privacy_section_header_text | string | Complete privacy |
privacy_section_body_text | string | Your credentials will never be made accessible any other entity |
privacy_policy_link | string | https://cdn.getfize.io/fize-policy/privacy-policy.html |
terms_of_use_link | string | https://cdn.getfize.io/fize-policy/terms-of-use.html |

<html lang="en">
<head>
<script src="https://cdn.getfize.com/sdk/v1.0/getfize.js"></script>
</head>
<body>
<div id="inline-container"></div>
<script>
let handler = FIZE.configure({
client_id: "FIZE_PROVIDED_CLIENT_ID",
content_config:{
about_us_page: {
title_text: "custom title",
security_section_header_text: "custom security section header",
security_section_body_text: "custom security section body",
privacy_section_header_text: "custom privacy section header",
privacy_section_body_text: "custom privacy section body",
privacy_policy_link: "custom url link for Privacy Policy",
terms_of_use_link: "custom url link for Terms of Use"
},
},
display_mode: "inline",
element_id: "inline-container"
});
</script>
</body>
</html>
Updated 2 months ago
What’s Next