Embed BPMN 2.0
Add BPMN diagrams to your application
1. Kogito BPMN Online Editor with Action Buttons
<iframe
src="https://cdn.luisbh.com/public-projects/bpmn-editor/index.html"
style="width: 100%; height: 100%; border:none;">
</iframe>

2. Kogito BPMN Online Editor JS
<script src="https://cdn.luisbh.com/public-projects/bpmn-editor/index.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function() {
const container = document.getElementById("bpmn-container");
const editor = BpmnEditor.open({
container: container,
initialContent: "",
readOnly: false,
origin: "*"
});
});
</script>
Learn how to easily embed a BPMN 2.0 editor on your website or app