32 lines
859 B
HTML
32 lines
859 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<!--
|
|
noVNC example: simple example using default UI
|
|
Copyright (C) 2010 Joel Martin
|
|
Licensed under LGPL-3 (see LICENSE.txt)
|
|
-->
|
|
<head>
|
|
<title>noVNC</title>
|
|
<meta http-equiv="X-UA-Compatible" content="chrome=1">
|
|
<link rel="stylesheet" href="include/plain.css">
|
|
<link rel="alternate stylesheet" href="include/black.css" TITLE="Black">
|
|
<!--
|
|
<script type='text/javascript'
|
|
src='http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js'></script>
|
|
-->
|
|
<script src="include/vnc.js"></script>
|
|
<script src="include/ui.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id='vnc'>Loading</div>
|
|
|
|
<script>
|
|
window.onload = function () {
|
|
UI.load('vnc');
|
|
};
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|