IntelliFend Seal
IntelliFend Seal serves to confirm the authenticity of the website, IntelliFend as an third-party security service provider issues the IntelliFend Seal to enterprise customers, customers who added IntelliFend Seal into their website will deliver a strong signal to their end users, indicating that the current website are under protection by IntelliFend Bot Management Service.
Integate intellifend seal statically, for server-side rendered HTML pages
Inject the following code snippet inside your html body tag.
IntelliFend Seal html
<a class='intellifend-seal' href="https://www.intellifend.com" target="_blank" title="IntelliFend Bot Management: AI-Powered & Flexible Pricing" style="display: block; width: 1px; height: 1px; overflow: hidden">IntelliFend Bot Management: AI-Powered & Flexible Pricing</a> <script>window._intellifend && _intellifend.seal.show()</script>
Integate intellifend seal dynamically, for JavaScript, React, Vue or Angular apps
Render intellifend seal within your app by invoking
_intellifend.seal.render()
API
If Agent JS Script are pre-loaded as an dependency
IntelliFend Seal JSX
function App() {
return (
<root>
...
<footer>
....
{window._intellifend && _intellifend.seal.render()}
</footer>
</root>
);
}
If Agent JS Script are loaded asynchronously or has not available yet
IntelliFend Seal JSX
window.addEventListener('IntelliFend', e => {
document.getElementById("placeholder-element").innerHTML = e.detail.intellifend.seal.render()
})