File size: 831 Bytes
bcc43d3
 
 
 
 
 
4ee4a07
bcc43d3
 
 
 
1898c0e
 
 
 
a73b02a
bcc43d3
1898c0e
4ee4a07
bcc43d3
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!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>
        <button onclick="autoConnect()">Auto-Connect</button>
    </div>
    <div id="container"></div>
    <script src="{{ url_for('static', filename='canvas.js') }}"></script>
</body>
</html>