17 lines
361 B
HTML
17 lines
361 B
HTML
|
<!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>
|