Wealth / static /index.html
EricaLuvGemma's picture
Update static/index.html
fdf6f4f verified
Raw
History Blame Contribute Delete
1.13 kB
File 6: static/index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta
name="viewport"
content="width=device-width, initial-scale=1.0">
<title>WebCLI</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<div id="terminal">
<pre id="output"></pre>
<div id="input-bar">
<span>$</span>
<textarea
id="command"
rows="1"
spellcheck="false"
autocomplete="off"
autocorrect="off"
autocapitalize="off"
></textarea>
<button id="send">
β–Ά
</button>
</div>
<div id="hardkeys">
<button data-key="CTRL">CTRL</button>
<button data-key="TAB">TAB</button>
<button data-key="ESC">ESC</button>
<button data-key="UP">↑</button>
<button data-key="DOWN">↓</button>
<button data-key="LEFT">←</button>
<button data-key="RIGHT">β†’</button>
<button data-key="HOME">HOME</button>
<button data-key="END">END</button>
</div>
</div>
<script src="/static/app.js"></script>
</body>
</html>