circuitpython/supervisor/shared/web_workflow/static/serial.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
361 B
HTML
Raw Normal View History

2022-06-29 19:31:55 -04:00
<!DOCTYPE html>
<html>
<head>
<title>Simple client</title>
<script src="/serial.js" defer=true></script>
</head>
<body>
<pre id="log"></pre>
<form onsubmit="onSubmit(); return false;">
<input type="text" id="input">
<input type="submit" value="Send">
<button onclick="onCloseClick(); return false;">close</button>
</form>
</body>
</html>