convert wetty from submodule to normal directory
This commit is contained in:
52
wetty/index.html
Normal file
52
wetty/index.html
Normal file
@@ -0,0 +1,52 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta
|
||||
name="viewport"
|
||||
content="width=device-width, initial-scale=1.0, user-scalable=no"
|
||||
/>
|
||||
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
||||
<title>WeTTY - Gateway Client</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="overlay">
|
||||
<div class="error">
|
||||
<div id="msg"></div>
|
||||
<input type="button" onclick="location.reload();" value="reconnect" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="options">
|
||||
<a class="toggler" href="#" alt="Toggle options"
|
||||
><i class="fas fa-cogs"></i
|
||||
></a>
|
||||
<iframe class="editor" src="/xterm_config/index.html"></iframe>
|
||||
</div>
|
||||
|
||||
<div id="functions">
|
||||
<a
|
||||
class="toggler"
|
||||
href="#"
|
||||
alt="Toggle options"
|
||||
onclick="window.toggleFunctions()"
|
||||
><i class="fas fa-keyboard"></i
|
||||
></a>
|
||||
<div class="onscreen-buttons">
|
||||
<a href="#" alt="Up" onclick="window.pressUP()"><div>Up</div></a>
|
||||
<a href="#" alt="Down" onclick="window.pressDOWN()"><div>Down</div></a>
|
||||
<a href="#" alt="Left" onclick="window.pressLEFT()"><div>Left</div></a>
|
||||
<a href="#" alt="Right" onclick="window.pressRIGHT()"><div>Right</div></a>
|
||||
<a href="#" alt="Esc" onclick="window.pressESC()"><div>Esc</div></a>
|
||||
<a id="onscreen-ctrl" href="#" alt="Ctrl" onclick="window.toggleCTRL()"
|
||||
><div>Ctrl</div></a
|
||||
>
|
||||
<a href="#" alt="Tab" onclick="window.pressTAB()"><div>Tab</div></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="terminal"></div>
|
||||
<script type="module" src="/src/client/wetty.ts"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user