<HTML>
<head>
<TITLE>
$USER's $DESKTOP desktop ($DISPLAY)
</TITLE>
</head>
<br/>
This page shows how to connect to a VNC server with a web browser. The buttons below
fire up an instance of the <a href="https://novnc.com/">noVNC</a> HTML5 viewer.
<br/>
<br/>
<script language="JavaScript">
function start_novnc(do_encrypt){
var host = document.location.hostname;
if(host.search(/^.*:.*:.*$/) != -1) {
if(host.charAt(0) != "[")
host = "[" + host;
if(host.charAt(host.length-1) != "]")
host = host + "]";
}
open("novnc/vnc.html?autoconnect=true&host=" + host + "&port=$PORT&encrypt=" + (do_encrypt ? "1" : "0"));
}
</script>
<form name="novnc_button_form">
<input type="button" name="novnc_button" value="Click here to connect using noVNC" onClick='start_novnc(false)'>
</form>
<form name="novnc_button_form">
<input type="button" name="novnc_button" value="Click here to connect using noVNC using an encrypted connection" onClick='start_novnc(true)'>
</form>
<br/>
<br/>
<br/>
<A href="https://libvnc.github.io/">LibVNCServer/LibVNCClient Homepage</A>
</HTML>