Request by sending an email to developer@vatom.com
The implicitTerms element allows you to style text stating terms that the user implicitly accepts upon signing in. This text contains links to additional pages containing details of the terms.
The following example applies white text and a font size of 48px to the implicit terms text on a card with a gray background which in turn is displayed over a white background. All other elements are hidden. Note that the white text style does not affect the hyperlinks. The font size affects all of the text.
{
"features": {
"auth": { "ssoProviders": [] }
},
"theme": {
"header": {
"logo": { "style": { "display": "none" } },
"title": { "style": { "display": "none" } }
},
"background": {
"style": {
"backgroundColor": "white"
}
},
"card": {
"style": {
"backgroundColor": "gray"
}
},
"label": { "style": { "display": "none" } },
"input": { "style": { "display": "none" } },
"button": { "style": { "display": "none" } },
"implicitTerms": {
"style": {
"color": "white",
"fontSize": "48px"
}
},
"footer": { "style": { "display": "none" } }
}
}