Render
<div id="allpass"></div>const accessToken = 'ACCESS_TOKEN_FROM_PUBLIC_API';
Allpass.start(accessToken);Example
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="favicon.ico">
<title>Title</title>
</head>
<body>
<div id="app">
<div id="header">
<h1>My Test Application</h1>
</div>
<div id="container">
<div>
<h3>Content</h3>
<img id="loader" alt="loader" style="display: none" src="loader.gif"/>
<button id="start">Start Verification</button>
</div>
<div id="allpass"></div>
</div>
<div id="footer">
<p>Footer</p>
</div>
<script src="integration.js" async></script>
</div>
</body>
</html>Last updated