<!-- Importing the Javascript library -->
<script src="complycube.min.js"></script>
<!-- Importing the default CSS -->
<link rel="stylesheet" href="style.css" />
function startVerification() {
complycube = ComplyCube.mount({
token: "<YOUR_WEB_SDK_TOKEN>",
onComplete: function(data) {
console.log("Capture complete", data)
<!-- This is where the Web SDK will be mounted -->
<div id="complycube-mount"></div>
<!-- Clicking the button will start the ComplyCube verification UI -->
<button onClick="startVerification()">Start verification</button>