mirror of
https://github.com/webmin/webmin.git
synced 2026-02-06 23:42:21 +00:00
39 lines
1.4 KiB
HTML
39 lines
1.4 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
|
|
<html>
|
|
<head>
|
|
<title>Welcome to Shell-In-A-Box</title>
|
|
</head>
|
|
<frameset rows="*,0" border=0>
|
|
<frame src=${RELATIVE_SCRIPT_NAME}applet.html name=applet noresize scrolling=no border=no marginwidth=0 marginheight=0>
|
|
<frame src=${RELATIVE_SCRIPT_NAME}blank.html name=hidden noresize scrolling=no border=no marginwidth=0 marginheight=0>
|
|
</frameset>
|
|
<noframes>
|
|
<body bgcolor=#c0c0c0>
|
|
<center>
|
|
<script language=JavaScript1.2>
|
|
<!--
|
|
document.writeln("<applet code='com/shellinabox/ShellInABox.class'");
|
|
document.writeln(" align=center alt='ShellInABox' name='ShellInABox'");
|
|
if (typeof innerWidth == "undefined") {
|
|
document.writeln(" width='100%' height='100%'");
|
|
} else {
|
|
document.writeln(" width='" + innerWidth + "' height='" + innerHeight + "'");
|
|
}
|
|
document.writeln(" hiddenframe=''");
|
|
document.writeln(" <param name=hiddenframe value=''>");
|
|
document.writeln("</applet>");
|
|
//-->
|
|
</script>
|
|
<noscript>
|
|
<applet code='com/shellinabox/ShellInABox.class'
|
|
align=center alt='ShellInABox' name='ShellInABox'
|
|
width='100%' height='100%'
|
|
hiddenframe=''>
|
|
<param name=hiddenframe value=''>
|
|
</applet>
|
|
</noscript>
|
|
<center>
|
|
</body>
|
|
</noframes>
|
|
</html>
|