workflow_launcher/index.html

20 lines
519 B
HTML
Raw Normal View History

2024-03-11 11:01:07 -04:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'"
/>
2024-03-12 08:11:27 -04:00
<link href="css/bootstrap.min.css" rel="stylesheet">
2024-03-11 11:01:07 -04:00
<title>NextGen Workflows launcher</title>
</head>
<body>
<div w3-include-html="menu.html"></div>
<h1>NextGen Workflows launcher</h1>
<ul id="workflows">
</ul>
</body>
<script src="./renderer.js"></script>
2024-03-12 08:11:27 -04:00
<script src="js/bootstrap.bundle.min.js"></script>
2024-03-11 11:01:07 -04:00
</html>