31 lines
835 B
HTML
31 lines
835 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>WebTelnet</title>
|
|
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
|
<link href="ftelnet.css" rel="stylesheet">
|
|
<link href="custom.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
|
|
<div id="fTelnetContainer"></div>
|
|
<script src="ftelnet.norip.xfer.min.js" id="fTelnetScript"></script>
|
|
<script>
|
|
var Options = new fTelnetOptions();
|
|
Options.Hostname = window.location.hostname;
|
|
Options.Port = 8006;
|
|
|
|
//Options.ProxyHostname = 'sinclair.narnia.11101.de';
|
|
//Options.ProxyPort = 8006;
|
|
|
|
Options.ScreenRows = 25;
|
|
|
|
var Client = new fTelnetClient('fTelnetContainer', Options);
|
|
fTelnet.ButtonBarVisible = true;
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|