OneSDKModuleseKYC FormStartCopy pageThe Start screen shows the logo of your organization. Quick Implementation index.htmlstart.js1<body>2 <div id="form"></div>3</body> Event Handling Available EventsEvent NameTriggered Whenform:start:loadedScreen is successfully mountedform:start:readyUser clicks the start buttonform:start:failedScreen encounters an errorEvent Usage Example1// Listen for successful screen mount2start.on('form:start:loaded', () => {3 console.log('Start screen ready');4});56// Handle user clicking start7start.on('form:start:ready', () => {8 // Load the next screen (e.g., consent form)9 consent.mount("#form");10});1112// Handle errors13start.on('form:start:failed', (error) => {14 console.error('Start screen error:', error);15}); Screen Customization 1const start = oneSdk.component('form', {2 name: "START", // Set the screen name identifier3 type: "manual", // Set form type to manual input4 logo: { // Configure the title section5 src: "./assets/logo.png"6 },7}); Customization Options Button (CTA)1cta: {2 label: 'Continue',3 style: {4 'ff-button': {5 backgroundColor: '#2563eb',6 color: '#ffffff',7 borderRadius: '4px',8 padding: '12px 24px'9 }10 }11}Logo1logo: {2 src: './assets/logo.png'3},4style: {5 'ff-logo': {6 'width': '50px'7 }8}