29 lines
745 B
HTML
29 lines
745 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 src="config.js" id="fTelnetScript"></script>
|
|
<script>
|
|
var Options = new fTelnetOptions();
|
|
Options.Hostname = wshost;
|
|
Options.Port = wsport;
|
|
|
|
var Client = new fTelnetClient('fTelnetContainer', Options);
|
|
fTelnet.ButtonBarVisible = true;
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|
|
|
|
|