webssh2/public/client.htm
billchurch 1f88e7c9b1 move menu content serverside
to control display based on options enabled, better UI experience.
still in progress
2018-02-12 13:14:12 -05:00

26 lines
649 B
HTML

<html>
<head>
<title>WebSSH2</title>
<style>
body {background-color: #000;height: 100%;margin: 0;}.dropup-content {display: none;}
</style>
<link rel="stylesheet" href="/webssh2.css" />
</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"></div>
</div>
<div id="footer"></div>
<div id="status"></div>
</div>
</div>
<script src="/webssh2.bundle.js" defer></script>
</body>
</html>