mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
14 lines
607 B
HTML
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%>
|