(function() { //const htmlContent = ``; const htmlContent=`
Official Announcement BIC — IIUI 6 April 2026

FintechPaa has officially joined BIC

A practical fintech pathway for IIU students and faculty: industry trainings, fintech security learning, fintech software development mentorship, and guided execution from idea to portfolio.

What Students Can Avail

Students can build market-ready fintech capability through structured learning and guided implementation, not just theory.

This track is designed to help IIU students move from classroom understanding to practical execution with confidence, measurable outcomes, and portfolio-ready work.

Hands-on fintech trainings with practical workflows and applied case scenarios
 
Focused tracks in fintech security and secure product operations
 
Fintech software development exposure from architecture to deployment
 
Project mentorship on real open banking and payment use cases
 
Portfolio-oriented guidance for internships, interviews, and career growth
 
Exposure to compliance-driven execution mindset (KYC/AML, risk, operations)

For IIU Faculty & Academic Teams

We collaborate with faculty to bridge classroom learning and industry implementation through structured engagement in fintech security and fintech software development domains.

Curriculum Support Applied modules and workshop content aligned with fintech execution realities.   Mentored Projects Co-guided student projects that produce tangible, assessable outcomes.
 
Industry Sessions Focused talks and bootcamps on open banking, payments, and product delivery.   Pathway Building From classroom concepts to internship and startup-ready implementation.
 
Fintech Law & Regulations Practical orientation on compliance frameworks, legal obligations, and policy-aware fintech execution.   Fintech Software Development Applied software engineering guidance for fintech products, from architecture and security to deployment.
 

Apply & Register

Use the relevant link below for quick enrollment, opportunities, or mentorship/training facilitation requests.

Course Registration   Internship Opportunities
 
Job Offers & Open Roles   Student Facilitation (Project Mentorship/Training)
sales@fintechpaa.com fintechpaa.com support@fintechpaa.com
`; // Find compose window function findComposeWindow() { const selectors = [ '[role="textbox"][contenteditable="true"]', '.editable', '.Am.Al.editable', 'div[aria-label*="Message Body"]', 'div[contenteditable="true"][role="textbox"]' ]; for (let selector of selectors) { const element = document.querySelector(selector); if (element) return element; } return null; } // Insert HTML without using innerHTML (bypasses Trusted Types) function insertHTML(composeElement) { // Focus on compose window composeElement.focus(); // Clear existing content using execCommand document.execCommand('selectAll', false, null); document.execCommand('delete', false, null); // Insert HTML using execCommand (this bypasses Trusted Types) document.execCommand('insertHTML', false, htmlContent); console.log('✅ FintechPaa flyer inserted successfully!'); } // Execute console.log('🚀 Inserting FintechPaa x BIC-IIUI Flyer...'); const composeWindow = findComposeWindow(); if (composeWindow) { try { insertHTML(composeWindow); // Trigger input event to update Gmail const event = new Event('input', { bubbles: true }); composeWindow.dispatchEvent(event); console.log('✨ Flyer ready! You can now add recipient and send.'); } catch (error) { console.error('Error inserting HTML:', error); console.log('Trying alternative method...'); // Alternative: Use paste simulation const dataTransfer = new DataTransfer(); dataTransfer.setData('text/html', htmlContent); const pasteEvent = new ClipboardEvent('paste', { bubbles: true, cancelable: true, clipboardData: dataTransfer }); composeWindow.dispatchEvent(pasteEvent); console.log('✅ Flyer inserted via paste simulation!'); } } else { console.log('❌ Compose window not found!'); console.log('Please click "Compose" button first, then run this script.'); } })();