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.

PropertyTypeDefault Value
title_textstring{{display_name}} is ready to check to check your current insurance coverage
security_section_header_textstringConnect securely
security_section_body_textstringYour data is end-to-end, military grade 256 bit AES key encrypted
privacy_section_header_textstringComplete privacy
privacy_section_body_textstringYour credentials will never be made accessible any other entity
privacy_policy_link
stringhttps://cdn.getfize.io/fize-policy/privacy-policy.html
terms_of_use_link
stringhttps://cdn.getfize.io/fize-policy/terms-of-use.html
1542
<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>