Official button styles for Verda API integrations
To ensure a consistent user experience across all platforms integrating with Verda, we require the use of our standardized buttons for all API integrations. These buttons are designed to be recognizable, accessible, and consistently branded.
Standard button for job applications using verified credentials.
Standard button for AI-powered candidate assessment.
Standard button for reporting professional conduct issues.
Follow these steps to implement the standardized Verda buttons in your application:
<link rel="stylesheet" href="https://api.verda.work/static/css/api_buttons.css"> <script src="https://api.verda.work/static/js/api_buttons.js"></script>
Add the appropriate button HTML based on which API you're implementing:
<button class="verda-button verda-apply-button" id="apply-with-verda-btn" data-verda-api="apply"> Apply with Verda </button>
<button class="verda-button verda-assess-button" id="assess-with-verda-btn" data-verda-api="assess"> Assess with Verda </button>
<button class="verda-button verda-report-button" id="report-to-verda-btn" data-verda-api="report"> Report to Verda </button>
Add your custom event handlers to the buttons while maintaining the standardized HTML structure:
document.getElementById('apply-with-verda-btn').addEventListener('click', function() { // Your custom code here initiateVerdaApplyFlow(); });
All integrations with Verda APIs must adhere to the following requirements: