27 lines
982 B
HTML
27 lines
982 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>bpmn-js-spiffworkflow</title>
|
|
<meta charset="utf-8"/>
|
|
<link rel="stylesheet" href="vendor/bpmn-js/assets/diagram-js.css"/>
|
|
<link rel="stylesheet" href="vendor/bpmn-js/assets/bpmn-js.css"/>
|
|
<link rel="stylesheet" href="vendor/bpmn-js/assets/bpmn-font/css/bpmn-embedded.css"/>
|
|
<link rel="stylesheet" href="vendor/bpmn-js-properties-panel/assets/properties-panel.css"/>
|
|
<link rel="stylesheet" href="css/app.css"/>
|
|
|
|
<!-- Just have this for the download file icon -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
</head>
|
|
<body>
|
|
<div id="menu">
|
|
<button id="downloadButton" class="btn"><i class="fa fa-download"></i> Download</button>
|
|
<button id="uploadButton" class="btn">Open a file</button>
|
|
</div>
|
|
<div id="container">
|
|
<div id="modeler"></div>
|
|
<div id="panel"></div>
|
|
</div>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html><!---->
|