43 lines
1.2 KiB
HTML
43 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>WF Compiler Demo</title>
|
|
<link rel="stylesheet" href="/css/default.css">
|
|
</head>
|
|
<body>
|
|
<div class="content">
|
|
<h1 class="content-title">WFC Demo</h1>
|
|
|
|
<ul>
|
|
<li>
|
|
Websocket demos that work
|
|
|
|
<ul>
|
|
<li><a href="/ws-test-echo.html">Echo</a></li>
|
|
</ul>
|
|
</li>
|
|
<li>
|
|
Don't work
|
|
|
|
<ul>
|
|
<li><a href="/chat.html">Chatroom</a></li>
|
|
<li><a href="/tetris.html">Tetris</a></li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
|
|
<div class="content-body">
|
|
<textarea disabled id="wfc-output"></textarea>
|
|
<input autofocus id="wfc-input"></input>
|
|
|
|
<h2>Settings</h2>
|
|
<input type="checkbox" checked id="auto-resize-output">Auto-resize output</input> <br>
|
|
<input type="checkbox" checked id="auto-scroll" >Auto-scroll output to bottom</input>
|
|
</div>
|
|
</div>
|
|
|
|
<script type="module" src="./js/dist/index.js"></script>
|
|
</body>
|
|
</html>
|