31 lines
864 B
HTML
31 lines
864 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>FEWD: WF Compiler Demo</title>
|
|
<link rel="stylesheet" href="/css/default.css">
|
|
</head>
|
|
<body>
|
|
<div id="titlebar">
|
|
<div class="content">
|
|
<a href="/" class="tb-home">Home</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<h1 class="content-title">WFC Demo</h1>
|
|
|
|
<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/wfc.js"></script>
|
|
</body>
|
|
</html>
|