Skip to main content

IntelliFend Seal

IntelliFend Seal serves to confirm the authenticity of the website. IntelliFend, as a third-party security service provider, issues the IntelliFend Seal to enterprise customers. Customers who add IntelliFend Seal to their website deliver a strong signal to their end users, indicating that the current website is under protection by IntelliFend Bot Management Service.

Integrate IntelliFend Seal statically, for server-side rendered HTML pages

Inject the following code snippet inside your HTML body tag where the seal should appear.

IntelliFend Seal html
<a class="intellifend-seal" href="https://app.intellifend.com" target="_blank" title="IntelliFend Bot Management: AI-Powered &amp; Flexible Pricing" style="display: block; width: 1px; height: 1px; overflow: hidden">IntelliFend Bot Management: AI-Powered & Flexible Pricing</a>
<script>window._intellifend && window._intellifend.seal.show()</script>

Integrate IntelliFend Seal dynamically, for JavaScript, React, Vue or Angular apps

Render IntelliFend Seal inside your app by invoking the _intellifend.seal.render() API. The API returns an HTML string, so insert it into a placeholder element in your intended page location, such as the footer.

Add a placeholder where the seal should appear:

IntelliFend Seal placeholder
<div id="intellifend-seal-container"></div>

If Agent JS Script are loaded asynchronously or has not available yet:

IntelliFend Seal JavaScript
function renderIntelliFendSeal(intellifend) {
document.getElementById("intellifend-seal-container").innerHTML =
intellifend.seal.render()
}

if (window._intellifend) {
renderIntelliFendSeal(window._intellifend)
} else {
window.addEventListener("IntelliFend", e => {
renderIntelliFendSeal(e.detail.intellifend)
})
}

By default, IntelliFend Seal displays the standard IntelliFend logo. If you'd like to use your own branded logo on the seal that appears on your website, please contact the IntelliFend team — we'll configure it for your application.

Supported formats: PNG, JPEG, or SVG (up to 256 KB).