webssh2/client/public/client.htm
billchurch 200c18cc17 fixed terminal height calculation after <!DOCTYPE html> addition
html needed a height: 100% attribute, otherwise terminal-container did
not take up the entire window (less header/footer)
2018-02-17 01:18:38 -05:00

25 lines
669 B
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="/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>