Success Page
Overview
The client has the option to change the text in success page of Fize modal by using success_page property.
Property | Type | Default Value |
---|---|---|
title_text | string | Success |
body_text | string | {{display_name}} successfully linked your account |

<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:{
success_page: {
title_text: "custom title",
body_text: "custom body text"
},
},
display_mode: "inline",
element_id: "inline-container"
});
</script>
</body>
</html>
Updated 7 months ago
What’s Next