18 lines
311 B
HTML
18 lines
311 B
HTML
<html>
|
|
|
|
<head>
|
|
<title>VNC Client</title>
|
|
<link rel="stylesheet" href="include/plain.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div id='vnc'>Loading</div>
|
|
</body>
|
|
|
|
<script src="vnc.js"></script>
|
|
<script>
|
|
window.onload = function () { RFB.load('vnc'); }
|
|
</script>
|
|
|
|
</html>
|