lede/package/lean/luci-app-ttyd/luasrc/view/terminal/terminal.htm
2021-05-14 12:32:48 +08:00

14 lines
607 B
HTML

<%+header%>
<div class="cbi-map">
<h2 name="content"><%=translate("TTYD Terminal")%></h2>
<iframe id="terminal" style="width: 100%; min-height: 500px; border: none; border-radius: 3px;"></iframe>
</div>
<script type="text/javascript">
document.getElementById("terminal").src = "http://" + window.location.hostname + ":7681";
document.getElementById("terminal").height = document.documentElement.clientHeight;
window.onresize = function(){
document.getElementById("terminal").height = document.documentElement.clientHeight;
}
</script>
<%+footer%>