Digital ID Connect button
Digital ID Connect is a UK network of reusable Digital ID apps that allow businesses and people to trust who they’re connecting with.
The network is built by Yoti, Post Office and Lloyds Bank to make the digital world easier and safer for everybody.
Digital ID Connect buttons and QR code styles use the client-side JavaScript library provided by Yoti and follow the same structure as described here.
The configuration of the element skinId
determines the button and QR code styles. An example is shown below:
Brand | skinId configuration |
---|---|
Yoti | yoti |
Digital ID Connect | digital-id-uk |
To use the Digital ID Connect skin, your organisation must operate in the United Kingdom, Isle of Man or the Channel Islands
x
<!-- Simple Button Generation -->
<head>
<script src="https://www.yoti.com/share/client/"></script>
</head>
<body>
<!-- Yoti element will be rendered inside this DOM node -->
<div id="xxx"></div>
<!-- This script snippet will also be required in your HTML body -->
<script>
window.Yoti.Share.init({
elements: [
{
domId: "xxx",
scenarioId: "xxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
clientSdkId: "xxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
displayLearnMoreLink: true,
skinId: "digital-id-uk"
}
]
});
</script>
</body>
Was this page helpful?