IdentiCapture - Button

Add IdentiCapture Button on Website

This section explains how to add the LEM Verify IdentiCapture button anywhere to your website.

Step 1 - Include references to the LEM SDK to the top of your HTML

Add the following two HTML tags to the <Head> tag of the page you would like to add the IdentiCapture button:

<script src="https://lemverify.co/js/lem-sdk-v2.0.1.js"></script>
<link rel="stylesheet" href="https://lemverify.co/css/lem-sdk-v2.0.1.css" />

Step 2 - Configure the LEM IdentiCapture button to draw wherever you want

Add the following configuration in a <script> at the bottom of the <body> tag:

LemSdk.Config({
  clientId: '<AccountID>',
	id: 'my-div'
});

clientId - The AccountId that can be obtained from the Account Settings in your LEM Dashboard.
id - The name of the id attribute of a <div> that will reference the IdentiCapture button.

Step 3 - Add the IdentiCapture button to the page

Now that the button has been configured and created, you just need to add it to the page where you want it to display

<body>
    <div id="my-div"></div>
</body>

Step 4 - Finishing Touches

Once Steps 1 - 3 has been completed, your IdentiCapture button, as shown below, should now show on your webpage:

608