Reverse Engineering Your Success
${reportHtml}
`.trim();
// Create a Blob and trigger download
const blob = new Blob([downloadHtml], { type: 'text/html' });
const link = document.createElement('a');
link.href = URL.createObjectURL(blob);
link.download = 'TTAReverseEngineeringReport.html';
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
};
container.appendChild(dynamicForm);
container.style.display = 'block';
});