ptouch-api/web/index.html
2025-10-06 23:04:58 +02:00

41 lines
No EOL
870 B
HTML

<!doctype html>
<html lang="en">
<head>
<link rel="icon" href="data:;base64,=">
<link rel="stylesheet" href="style.css">
<title>PTouch</title>
</head>
<body>
<table id="elements">
<thead>
</thead>
<tbody>
</tbody>
<tfoot>
<td>
<input type="button" value="Add Text" id="add-text"/>
<input type="button" value="Add Image" id="add-image"/>
</td>
</tfoot>
</table>
<p>
<label for="canvas-width">Width</label>
<input type="number" min="0" id="canvas-width" value="300">
<select id="canvas-width-unit">
<option value="px" selected>px</option>
<option value="mm">mm</option>
</select>
</p>
<div id='tape'>
<canvas id="preview" height="32" width="300"></canvas>
</div>
<p>
<input type="button" value="Print" id="print"/>
</p>
<script src="label.js"></script>
</body>
</html>