Spaces:
Sleeping
Sleeping
File size: 769 Bytes
bcc43d3 decf307 bcc43d3 1898c0e bcc43d3 1898c0e decf307 bcc43d3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Node Canvas</title>
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
<script src="https://unpkg.com/konva@9/konva.min.js"></script>
</head>
<body>
<div id="controls">
<input type="file" id="codeFile" accept=".py">
<textarea id="codeInput" rows="10" cols="50" placeholder="Paste Python code here"></textarea>
<button onclick="submitCode()">Parse Code</button>
<button onclick="addNode()">Add Manual Node</button>
</div>
<div id="container"></div>
<script src="{{ url_for('static', filename='canvas.js') }}"></script>
</body>
</html> |