-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (30 loc) · 952 Bytes
/
index.html
File metadata and controls
37 lines (30 loc) · 952 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Image 2 G-Code</title>
</head>
<body>
<div id="app">
<div id="gcode-preview-container" class="preview-container">
<canvas id="gcode-canvas"></canvas>
<div id="preview-label" class="preview-label">Image 2 G-Code</div>
</div>
<div class="actions">
<button id="load-btn" title="Load File">
<img src="folder.svg" alt="Load File">
</button>
<input type="file" id="file-input" accept="image/*,.gcode" style="display: none;" />
<button id="save-btn">
<img src="save.svg" alt="Save">
</button>
<button id="settings-btn">
<img src="settings.svg" alt="Settings">
</button>
</div>
<div id="output-log" class="output-log"></div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>