Files
noVNC/vnc.html
T

228 lines
11 KiB
HTML
Raw Normal View History

2012-10-19 12:18:48 -05:00
<!DOCTYPE html>
2011-09-29 09:32:09 -05:00
<html>
<head>
<!--
2010-11-10 16:02:19 -06:00
noVNC example: simple example using default UI
Copyright (C) 2012 Joel Martin
2016-04-30 04:35:19 +02:00
Copyright (C) 2016 Samuel Mannehed for Cendio AB
noVNC is licensed under the MPL 2.0 (see LICENSE.txt)
This file is licensed under the 2-Clause BSD license (see LICENSE.txt).
Connect parameters are provided in query string:
http://example.com/?host=HOST&port=PORT&encrypt=1&true_color=1
or the fragment:
http://example.com/#host=HOST&port=PORT&encrypt=1&true_color=1
2010-09-08 10:11:11 -05:00
-->
2011-09-08 10:00:09 -05:00
<title>noVNC</title>
2016-05-27 09:36:00 +02:00
<meta charset="utf-8" />
2011-09-08 10:00:09 -05:00
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
Remove this if you use the .htaccess -->
2016-05-27 09:36:00 +02:00
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
2011-09-08 10:00:09 -05:00
<!-- Apple iOS Safari settings -->
2016-05-27 09:36:00 +02:00
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
2011-09-08 10:00:09 -05:00
<meta name="apple-mobile-web-app-capable" content="yes" />
2013-04-05 09:22:19 +02:00
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<!-- App Start Icon -->
2016-09-14 13:52:53 -04:00
<link rel="apple-touch-startup-image" href="app/images/screen_320x460.png" />
<!-- For iOS devices set the icon to use if user bookmarks app on their homescreen -->
2016-09-14 13:52:53 -04:00
<link rel="apple-touch-icon" href="app/images/screen_57x57.png" />
2011-09-08 10:00:09 -05:00
<!--
2016-09-14 13:52:53 -04:00
<link rel="apple-touch-icon-precomposed" href="app/images/screen_57x57.png" />
2011-09-08 10:00:09 -05:00
-->
2011-09-29 09:32:09 -05:00
2011-09-08 10:00:09 -05:00
<!-- Stylesheets -->
2016-09-14 13:52:53 -04:00
<link rel="stylesheet" href="app/styles/base.css" />
<link rel="alternate stylesheet" href="app/styles/black.css" TITLE="Black" />
<link rel="alternate stylesheet" href="app/styles/blue.css" TITLE="Blue" />
2011-09-08 10:00:09 -05:00
<!--
2011-09-29 09:32:09 -05:00
<script type='text/javascript'
2011-09-08 10:00:09 -05:00
src='http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js'></script>
-->
2011-09-29 09:32:09 -05:00
</head>
2010-04-01 11:36:22 -05:00
<body>
<div id="noVNC_control_bar" class="noVNC_status_normal">
2011-09-08 10:00:09 -05:00
<!--noVNC Mobile Device only Buttons-->
<div class="noVNC_buttons_left">
2016-09-14 13:52:53 -04:00
<input type="image" alt="viewport drag" src="app/images/drag.png"
id="noVNC_view_drag_button" class="noVNC_status_button"
2016-05-27 09:36:00 +02:00
title="Move/Drag Viewport" />
<div id="noVNC_mobile_buttons">
2016-09-14 13:52:53 -04:00
<input type="image" alt="No mousebutton" src="app/images/mouse_none.png"
2016-05-27 09:36:00 +02:00
id="noVNC_mouse_button0" class="noVNC_status_button" />
2016-09-14 13:52:53 -04:00
<input type="image" alt="Left mousebutton" src="app/images/mouse_left.png"
2016-05-27 09:36:00 +02:00
id="noVNC_mouse_button1" class="noVNC_status_button" />
2016-09-14 13:52:53 -04:00
<input type="image" alt="Middle mousebutton" src="app/images/mouse_middle.png"
2016-05-27 09:36:00 +02:00
id="noVNC_mouse_button2" class="noVNC_status_button" />
2016-09-14 13:52:53 -04:00
<input type="image" alt="Right mousebutton" src="app/images/mouse_right.png"
2016-05-27 09:36:00 +02:00
id="noVNC_mouse_button4" class="noVNC_status_button" />
2016-09-14 13:52:53 -04:00
<input type="image" alt="Keyboard" src="app/images/keyboard.png"
id="noVNC_keyboard_button" class="noVNC_status_button"
2016-05-27 09:36:00 +02:00
value="Keyboard" title="Show Keyboard" />
<!-- Note that Google Chrome on Android doesn't respect any of these,
html attributes which attempt to disable text suggestions on the
on-screen keyboard. Let's hope Chrome implements the ime-mode
style for example -->
<textarea id="noVNC_keyboardinput" autocapitalize="off"
autocorrect="off" autocomplete="off" spellcheck="false"
mozactionhint="Enter"></textarea>
<div id="noVNC_extra_keys">
2016-09-14 13:52:53 -04:00
<input type="image" alt="Extra keys" src="app/images/toggleextrakeys.png"
2016-05-27 09:36:00 +02:00
id="noVNC_toggleExtraKeys_button" class="noVNC_status_button" />
2016-09-14 13:52:53 -04:00
<input type="image" alt="Ctrl" src="app/images/ctrl.png"
2016-05-27 09:36:00 +02:00
id="noVNC_toggleCtrl_button" class="noVNC_status_button" />
2016-09-14 13:52:53 -04:00
<input type="image" alt="Alt" src="app/images/alt.png"
2016-05-27 09:36:00 +02:00
id="noVNC_toggleAlt_button" class="noVNC_status_button" />
2016-09-14 13:52:53 -04:00
<input type="image" alt="Tab" src="app/images/tab.png"
2016-05-27 09:36:00 +02:00
id="noVNC_sendTab_button" class="noVNC_status_button" />
2016-09-14 13:52:53 -04:00
<input type="image" alt="Esc" src="app/images/esc.png"
2016-05-27 09:36:00 +02:00
id="noVNC_sendEsc_button" class="noVNC_status_button" />
</div>
</div>
2011-09-08 10:00:09 -05:00
</div>
2015-03-24 15:05:38 -04:00
<div id="noVNC_status"></div>
2011-09-08 10:00:09 -05:00
<!--noVNC Buttons-->
<div class="noVNC_buttons_right">
2016-09-14 13:52:53 -04:00
<input type="image" alt="Ctrl+Alt+Del" src="app/images/ctrlaltdel.png"
id="noVNC_sendCtrlAltDel_button" class="noVNC_status_button"
title="Send Ctrl-Alt-Del" />
2016-09-14 13:52:53 -04:00
<input type="image" alt="Shutdown/Reboot" src="app/images/power.png"
id="noVNC_toggleXvp_button" class="noVNC_status_button"
2013-09-28 19:25:15 +01:00
title="Shutdown/Reboot..." />
2016-09-14 13:52:53 -04:00
<input type="image" alt="Clipboard" src="app/images/clipboard.png"
id="noVNC_clipboard_button" class="noVNC_status_button"
title="Clipboard" />
2016-09-14 13:52:53 -04:00
<input type="image" alt="Fullscreen" src="app/images/fullscreen.png"
id="noVNC_fullscreen_button" class="noVNC_status_button"
title="Fullscreen" />
2016-09-14 13:52:53 -04:00
<input type="image" alt="Settings" src="app/images/settings.png"
id="noVNC_settings_button" class="noVNC_status_button"
title="Settings" />
2016-09-14 13:52:53 -04:00
<input type="image" alt="Connect" src="app/images/connect.png"
id="noVNC_connectPanel_button" class="noVNC_status_button"
title="Connect" />
2016-09-14 13:52:53 -04:00
<input type="image" alt="Disconnect" src="app/images/disconnect.png"
id="noVNC_disconnect_button" class="noVNC_status_button"
title="Disconnect" />
2011-09-08 10:00:09 -05:00
</div>
<!-- Description Panel -->
<!-- Shown by default when hosted at for kanaka.github.com -->
2014-03-26 11:18:48 +01:00
<div id="noVNC_description" class="">
noVNC is a browser based VNC client implemented using HTML5 Canvas
and WebSockets. You will either need a VNC server with WebSockets
support (such as <a href="http://libvncserver.sourceforge.net/">libvncserver</a>)
or you will need to use
<a href="https://github.com/kanaka/websockify">websockify</a>
to bridge between your browser and VNC server. See the noVNC
<a href="https://github.com/kanaka/noVNC">README</a>
and <a href="http://kanaka.github.com/noVNC">website</a>
for more information.
<br />
2016-05-27 09:36:00 +02:00
<input id="noVNC_description_button" type="button" value="Close" />
</div>
<!-- Popup Status -->
<div id="noVNC_popup_status" class="">
</div>
2011-09-08 10:00:09 -05:00
<!-- Clipboard Panel -->
<div id="noVNC_clipboard" class="triangle-right top">
<textarea id="noVNC_clipboard_text" rows=5>
2011-09-08 10:00:09 -05:00
</textarea>
<br />
<input id="noVNC_clipboard_clear_button" type="button"
2016-05-27 09:36:00 +02:00
value="Clear" />
2011-09-08 10:00:09 -05:00
</div>
2013-09-28 19:25:15 +01:00
<!-- XVP Shutdown/Reboot Panel -->
<div id="noVNC_xvp" class="triangle-right top">
<span id="noVNC_xvp_menu">
<input type="button" id="noVNC_xvpShutdown_button" value="Shutdown" />
<input type="button" id="noVNC_xvpReboot_button" value="Reboot" />
<input type="button" id="noVNC_xvpReset_button" value="Reset" />
2013-09-28 19:25:15 +01:00
</span>
</div>
2011-09-08 10:00:09 -05:00
<!-- Settings Panel -->
<div id="noVNC_settings" class="triangle-right top">
<span id="noVNC_settings_menu">
2011-09-08 10:00:09 -05:00
<ul>
2016-05-27 09:36:00 +02:00
<li><input id="noVNC_setting_encrypt" type="checkbox" /> Encrypt</li>
<li><input id="noVNC_setting_true_color" type="checkbox" checked /> True Color</li>
<li><input id="noVNC_setting_cursor" type="checkbox" /> Local Cursor</li>
<li><input id="noVNC_setting_clip" type="checkbox" /> Clip to Window</li>
<li><input id="noVNC_setting_shared" type="checkbox" /> Shared Mode</li>
<li><input id="noVNC_setting_view_only" type="checkbox" /> View Only</li>
<hr>
2016-05-27 09:36:00 +02:00
<li><input id="noVNC_setting_path" type="input" value="websockify" /> Path</li>
<li><label>
2016-04-30 04:35:19 +02:00
<select id="noVNC_setting_resize" name="vncResize">
<option value="off">None</option>
2015-02-17 22:41:34 -05:00
<option value="scale">Local Scaling</option>
<option value="downscale">Local Downscaling</option>
<option value="remote">Remote Resizing</option>
</select> Scaling Mode</label>
</li>
2016-05-27 09:36:00 +02:00
<li><input id="noVNC_setting_repeaterID" type="input" value="" /> Repeater ID</li>
2011-09-08 10:00:09 -05:00
<hr>
<!-- Stylesheet selection dropdown -->
<li><label><strong>Style: </strong>
2016-04-30 04:35:19 +02:00
<select id="noVNC_setting_stylesheet" name="vncStyle">
2011-09-08 10:00:09 -05:00
<option value="default">default</option>
</select></label>
</li>
<!-- Logging selection dropdown -->
<li><label><strong>Logging: </strong>
2016-04-30 04:35:19 +02:00
<select id="noVNC_setting_logging" name="vncLogging">
2011-09-08 10:00:09 -05:00
</select></label>
</li>
<hr>
2016-05-27 09:36:00 +02:00
<li><input type="button" id="noVNC_settings_apply" value="Apply" /></li>
2011-09-08 10:00:09 -05:00
</ul>
</span>
</div>
<!-- Connection Panel -->
<div id="noVNC_controls" class="triangle-right top">
<ul>
2016-04-30 04:35:19 +02:00
<li><label><strong>Host: </strong><input id="noVNC_setting_host" /></label></li>
<li><label><strong>Port: </strong><input id="noVNC_setting_port" /></label></li>
<li><label><strong>Password: </strong><input id="noVNC_setting_password" type="password" /></label></li>
2016-05-27 09:36:00 +02:00
<li><label><strong>Token: </strong><input id="noVNC_setting_token" /></label></li>
<li><input id="noVNC_connect_button" type="button" value="Connect" /></li>
2011-09-08 10:00:09 -05:00
</ul>
</div>
</div> <!-- End of noVNC_control_bar -->
2011-09-08 10:00:09 -05:00
2011-09-13 13:14:11 -05:00
<div id="noVNC_container">
2011-09-13 13:14:11 -05:00
<h1 id="noVNC_logo"><span>no</span><br />VNC</h1>
<!-- HTML5 Canvas -->
<div id="noVNC_screen">
<canvas id="noVNC_canvas" width="0" height="0">
Canvas not supported.
</canvas>
</div>
2011-09-08 10:00:09 -05:00
</div>
2016-09-14 13:52:53 -04:00
<!-- begin scripts -->
<script src="core/util.js"></script>
<script src="app/ui.js"></script>
<!-- end scripts -->
</body>
2010-04-01 11:36:22 -05:00
</html>