
* feat: upgrade to socket.io 4.1.1 #242 * chore: lint ./app/client/src/js/index.js #242 * chore: eslint disable global Blob warning #242 * chore: lint ./app/index.js #242 * chore: lint ./app/server/app.js #242 * chore: setup eslint and airbnb rules disable standard #242 * Delete package-lock-old.json * chore: lint ./app/index.js #242 * feat: implement alpine docker image from #213 * chore: lint ./app/server/app.js still TODO for stop function #242 * chore: lint ./app/server/util.js #242 * chore: lint ./app/server/app.js reorg socket and safe shutdown * chore: grammar / spelling * chore: fix some misplaced next returns in some Express routes #242 * chore: lint ./app/server/socket.js #242 * chore: bump version in ./app/package.json #242 * docs: update docs for 0.4.0 #242 * chore: update package-lock.json * chore: install Prettier code linter #242 * chore: linting for Prettier #242 * chore: lint ./app/client/src/js/index.js #242 * chore: client linting #242 * Update package-lock.json * chore: repackage wbssh2 bundle for testing #242 * chore: convert ./app/client/src/js/index.js to typescript #242 * chore: remove html rendering from node * Update tsconfig.json * Update tsconfig.json * Delete index.js * Update ChangeLog.md * chore: config for development container #242 * Update BUILDING.md * feat: pull in #234 staged for 0.4.0 #242 * docs: update changelog * update package.json * chore: split config from app/server/app.js #242 * chore: version bump * chore: consistency * feat: overridebasic fixes #243 included for #242 * chore: remove serverlog code * docs: update changelog
32 lines
1.1 KiB
HTML
32 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>WebSSH2</title>
|
|
<style>
|
|
html, body {background-color: #000;height: 100%;margin: 0;}.dropup-content {display: none;}
|
|
</style>
|
|
<link rel="stylesheet" href="/ssh/webssh2.css" />
|
|
<link rel="icon" href="/ssh/favicon.ico" />
|
|
</head>
|
|
<body>
|
|
<div class="box">
|
|
<div id="header"></div>
|
|
<div id="terminal-container" class="terminal"></div>
|
|
<div id="bottomdiv">
|
|
<div class="dropup" id="menu">
|
|
<i class="fas fa-bars fa-fw"></i> Menu
|
|
<div id="dropupContent" class="dropup-content">
|
|
<a id="logBtn"><i class="fas fa-clipboard fa-fw"></i> Start Log</a>
|
|
<a id="downloadLogBtn"><i class="fas fa-download fa-fw"></i> Download Log</a>
|
|
<a id="reauthBtn" style="display: none;"><i class="fas fa-key fa-fw"></i> Switch User</a>
|
|
<a id="credentialsBtn" style="display: none;"><i class="fas fa-key fa-fw"></i> Credentials</a>
|
|
</div>
|
|
</div>
|
|
<div id="footer"></div>
|
|
<div id="status"></div>
|
|
<div id="countdown"></div>
|
|
</div>
|
|
</div>
|
|
<script src="/ssh/webssh2.bundle.js" defer></script>
|
|
</body>
|
|
</html>
|