Files
noVNC/vnc.html
T

326 lines
15 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
2016-08-25 17:32:57 +02:00
Copyright (C) 2016 Pierre Ossman 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
2016-10-14 13:24:35 +02:00
<!-- Icons (see Makefile for what the sizes are for) -->
<link rel="icon" sizes="16x16" type="image/png" href="app/images/icons/novnc-16x16.png">
<link rel="icon" sizes="24x24" type="image/png" href="app/images/icons/novnc-24x24.png">
<link rel="icon" sizes="32x32" type="image/png" href="app/images/icons/novnc-32x32.png">
<link rel="icon" sizes="48x48" type="image/png" href="app/images/icons/novnc-48x48.png">
<link rel="icon" sizes="60x60" type="image/png" href="app/images/icons/novnc-60x60.png">
<link rel="icon" sizes="64x64" type="image/png" href="app/images/icons/novnc-64x64.png">
<link rel="icon" sizes="72x72" type="image/png" href="app/images/icons/novnc-72x72.png">
<link rel="icon" sizes="76x76" type="image/png" href="app/images/icons/novnc-76x76.png">
<link rel="icon" sizes="96x96" type="image/png" href="app/images/icons/novnc-96x96.png">
<link rel="icon" sizes="120x120" type="image/png" href="app/images/icons/novnc-120x120.png">
<link rel="icon" sizes="144x144" type="image/png" href="app/images/icons/novnc-144x144.png">
<link rel="icon" sizes="152x152" type="image/png" href="app/images/icons/novnc-152x152.png">
<link rel="icon" sizes="192x192" type="image/png" href="app/images/icons/novnc-192x192.png">
<link rel="icon" sizes="512x512" type="image/png" href="app/images/icons/novnc-512x512.png">
<link rel="icon" sizes="any" type="image/svg+xml" href="app/images/icons/novnc-icon.svg">
<!-- Repeated last so that legacy handling will pick this -->
<link rel="icon" sizes="16x16" type="image/png" href="app/images/icons/novnc-16x16.png">
<!-- 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" />
2016-10-14 13:24:35 +02:00
<!-- Home Screen Icons (favourites and bookmarks use the normal icons) -->
<link rel="apple-touch-icon" sizes="60x60" type="image/png" href="app/images/icons/novnc-60x60.png">
<link rel="apple-touch-icon" sizes="76x76" type="image/png" href="app/images/icons/novnc-76x76.png">
<link rel="apple-touch-icon" sizes="120x120" type="image/png" href="app/images/icons/novnc-120x120.png">
<link rel="apple-touch-icon" sizes="152x152" type="image/png" href="app/images/icons/novnc-152x152.png">
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" />
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>
2016-11-05 18:02:08 +01:00
<div id="noVNC_fallback_error">
<div>noVNC encountered an error:</div>
2016-11-28 12:33:42 +01:00
<br>
2016-11-05 18:02:08 +01:00
<div id="noVNC_fallback_errormsg"></div>
</div>
2016-08-24 11:10:40 +02:00
<!-- noVNC Control Bar -->
<div id="noVNC_control_bar_anchor" class="noVNC_vcenter">
2016-08-24 11:10:40 +02:00
<div id="noVNC_control_bar">
<div id="noVNC_control_bar_handle" title="Hide/Show the control bar"><div></div></div>
<div class="noVNC_scroll">
2016-11-14 22:02:12 +01:00
<h1 class="noVNC_logo" translate="no"><span>no</span><br />VNC</h1>
2016-08-26 12:24:57 +02:00
2016-08-24 11:10:40 +02:00
<!-- Drag/Pan the viewport -->
2016-08-25 16:31:38 +02:00
<input type="image" alt="viewport drag" src="app/images/drag.svg"
2016-08-25 14:41:53 +02:00
id="noVNC_view_drag_button" class="noVNC_button noVNC_hidden"
2016-05-27 09:36:00 +02:00
title="Move/Drag Viewport" />
2016-08-24 11:10:40 +02:00
<!--noVNC Touch Device only buttons-->
<div id="noVNC_mobile_buttons">
2016-08-25 16:31:38 +02:00
<input type="image" alt="No mousebutton" src="app/images/mouse_none.svg"
2016-08-26 13:30:28 +02:00
id="noVNC_mouse_button0" class="noVNC_button"
title="Active Mouse Button"/>
2016-08-25 16:31:38 +02:00
<input type="image" alt="Left mousebutton" src="app/images/mouse_left.svg"
2016-08-26 13:30:28 +02:00
id="noVNC_mouse_button1" class="noVNC_button"
title="Active Mouse Button"/>
2016-08-25 16:31:38 +02:00
<input type="image" alt="Middle mousebutton" src="app/images/mouse_middle.svg"
2016-08-26 13:30:28 +02:00
id="noVNC_mouse_button2" class="noVNC_button"
title="Active Mouse Button"/>
2016-08-25 16:31:38 +02:00
<input type="image" alt="Right mousebutton" src="app/images/mouse_right.svg"
2016-08-26 13:30:28 +02:00
id="noVNC_mouse_button4" class="noVNC_button"
title="Active Mouse Button"/>
2016-08-25 16:31:38 +02:00
<input type="image" alt="Keyboard" src="app/images/keyboard.svg"
2016-08-25 14:41:53 +02:00
id="noVNC_keyboard_button" class="noVNC_button"
2016-05-27 09:36:00 +02:00
value="Keyboard" title="Show Keyboard" />
</div>
2011-09-08 10:00:09 -05:00
2016-08-25 20:52:46 +02:00
<!-- Extra manual keys -->
<div id="noVNC_extra_keys">
<input type="image" alt="Extra keys" src="app/images/toggleextrakeys.svg"
2016-08-26 13:30:28 +02:00
id="noVNC_toggle_extra_keys_button" class="noVNC_button"
title="Show Extra Keys"/>
<div class="noVNC_vcenter">
<div id="noVNC_modifiers" class="noVNC_panel">
2016-08-25 20:52:46 +02:00
<input type="image" alt="Ctrl" src="app/images/ctrl.svg"
2016-08-26 13:30:28 +02:00
id="noVNC_toggle_ctrl_button" class="noVNC_button"
title="Toggle Ctrl"/>
2016-08-25 20:52:46 +02:00
<input type="image" alt="Alt" src="app/images/alt.svg"
2016-08-26 13:30:28 +02:00
id="noVNC_toggle_alt_button" class="noVNC_button"
title="Toggle Alt"/>
2016-08-25 20:52:46 +02:00
<input type="image" alt="Tab" src="app/images/tab.svg"
2016-08-26 13:30:28 +02:00
id="noVNC_send_tab_button" class="noVNC_button"
title="Send Tab"/>
2016-08-25 20:52:46 +02:00
<input type="image" alt="Esc" src="app/images/esc.svg"
2016-08-26 13:30:28 +02:00
id="noVNC_send_esc_button" class="noVNC_button"
title="Send Escape"/>
2016-08-26 13:34:01 +02:00
<input type="image" alt="Ctrl+Alt+Del" src="app/images/ctrlaltdel.svg"
id="noVNC_send_ctrl_alt_del_button" class="noVNC_button"
title="Send Ctrl-Alt-Del" />
</div>
</div>
</div>
2016-08-24 11:10:40 +02:00
<!-- XVP Shutdown/Reboot -->
2016-08-25 16:31:38 +02:00
<input type="image" alt="Shutdown/Reboot" src="app/images/power.svg"
2016-08-25 14:41:53 +02:00
id="noVNC_xvp_button" class="noVNC_button"
2013-09-28 19:25:15 +01:00
title="Shutdown/Reboot..." />
<div class="noVNC_vcenter">
2016-08-25 11:10:25 +02:00
<div id="noVNC_xvp" class="noVNC_panel">
2016-08-30 16:38:45 +02:00
<div class="noVNC_heading">
<img src="app/images/power.svg"> Power
</div>
2016-08-25 14:41:53 +02:00
<input type="button" id="noVNC_xvp_shutdown_button" value="Shutdown" />
<input type="button" id="noVNC_xvp_reboot_button" value="Reboot" />
<input type="button" id="noVNC_xvp_reset_button" value="Reset" />
2016-08-24 11:10:40 +02:00
</div>
</div>
2016-08-24 11:10:40 +02:00
<!-- Clipboard -->
2016-08-25 16:31:38 +02:00
<input type="image" alt="Clipboard" src="app/images/clipboard.svg"
2016-08-25 14:41:53 +02:00
id="noVNC_clipboard_button" class="noVNC_button"
title="Clipboard" />
<div class="noVNC_vcenter">
2016-08-25 11:10:25 +02:00
<div id="noVNC_clipboard" class="noVNC_panel">
2016-08-30 16:38:45 +02:00
<div class="noVNC_heading">
<img src="app/images/clipboard.svg"> Clipboard
</div>
<textarea id="noVNC_clipboard_text" rows=5></textarea>
2016-08-24 11:10:40 +02:00
<br />
<input id="noVNC_clipboard_clear_button" type="button"
2016-08-30 15:23:20 +02:00
value="Clear" class="noVNC_submit" />
2016-08-24 11:10:40 +02:00
</div>
</div>
2011-09-08 10:00:09 -05:00
2016-08-24 11:10:40 +02:00
<!-- Toggle fullscreen -->
2016-08-25 16:31:38 +02:00
<input type="image" alt="Fullscreen" src="app/images/fullscreen.svg"
2016-08-25 14:41:53 +02:00
id="noVNC_fullscreen_button" class="noVNC_button noVNC_hidden"
title="Fullscreen" />
2013-09-28 19:25:15 +01:00
2016-08-24 11:10:40 +02:00
<!-- Settings -->
2016-08-25 16:31:38 +02:00
<input type="image" alt="Settings" src="app/images/settings.svg"
2016-08-25 14:41:53 +02:00
id="noVNC_settings_button" class="noVNC_button"
title="Settings" />
<div class="noVNC_vcenter">
2016-08-25 11:10:25 +02:00
<div id="noVNC_settings" class="noVNC_panel">
2011-09-08 10:00:09 -05:00
<ul>
2016-08-30 16:38:45 +02:00
<li class="noVNC_heading">
<img src="app/images/settings.svg"> Settings
</li>
2016-08-30 16:38:09 +02:00
<li>
<label><input id="noVNC_setting_encrypt" type="checkbox" /> Encrypt</label>
</li>
<li>
<label><input id="noVNC_setting_true_color" type="checkbox" checked /> True Color</label>
</li>
<li>
<label><input id="noVNC_setting_cursor" type="checkbox" /> Local Cursor</label>
</li>
<li>
<label><input id="noVNC_setting_clip" type="checkbox" /> Clip to Window</label>
</li>
<li>
<label><input id="noVNC_setting_shared" type="checkbox" /> Shared Mode</label>
</li>
<li>
<label><input id="noVNC_setting_view_only" type="checkbox" /> View Only</label>
</li>
<li><hr></li>
<li>
<label for="noVNC_setting_path">Path:</label>
<input id="noVNC_setting_path" type="input" value="websockify" />
</li>
<li>
<label for="noVNC_setting_resize">Scaling Mode:</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>
2016-08-30 16:38:09 +02:00
</select>
</li>
<li>
<label for="noVNC_setting_repeaterID">Repeater ID:</label>
<input id="noVNC_setting_repeaterID" type="input" value="" />
</li>
2016-08-30 16:38:09 +02:00
<li><hr></li>
2011-09-08 10:00:09 -05:00
<!-- Logging selection dropdown -->
2016-08-30 16:38:09 +02:00
<li>
<label>Logging:
2016-08-25 13:02:24 +02:00
<select id="noVNC_setting_logging" name="vncLogging">
2016-08-30 16:38:09 +02:00
</select>
</label>
</li>
<li><hr></li>
<li>
<input type="button" id="noVNC_settings_apply" value="Apply" class="noVNC_submit" />
2011-09-08 10:00:09 -05:00
</li>
</ul>
2016-08-24 11:10:40 +02:00
</div>
</div>
2011-09-08 10:00:09 -05:00
2016-08-24 11:10:40 +02:00
<!-- Connection Controls -->
2016-08-25 16:31:38 +02:00
<input type="image" alt="Connect" src="app/images/connect.svg"
2016-08-25 14:41:53 +02:00
id="noVNC_connect_controls_button" class="noVNC_button"
title="Connect" />
2016-08-25 16:31:38 +02:00
<input type="image" alt="Disconnect" src="app/images/disconnect.svg"
2016-08-25 14:41:53 +02:00
id="noVNC_disconnect_button" class="noVNC_button"
title="Disconnect" />
<div class="noVNC_vcenter">
2016-08-25 14:41:53 +02:00
<div id="noVNC_connect_controls" class="noVNC_panel">
2016-08-24 11:10:40 +02:00
<ul>
2016-08-30 16:38:45 +02:00
<li class="noVNC_heading">
<img src="app/images/connect.svg"> Connection
</li>
2016-08-30 16:38:09 +02:00
<li>
<label for="noVNC_setting_host">Host:</label>
<input id="noVNC_setting_host" />
</li>
<li>
<label for="noVNC_setting_port">Port:</label>
<input id="noVNC_setting_port" />
</li>
<li>
<label for="noVNC_setting_password">Password:</label>
<input id="noVNC_setting_password" type="password" />
</li>
<li><hr></li>
<li>
<input id="noVNC_connect_button" type="button" value="Connect" class="noVNC_submit" />
</li>
2016-08-24 11:10:40 +02:00
</ul>
</div>
</div>
</div>
2011-09-08 10:00:09 -05:00
</div>
</div> <!-- End of noVNC_control_bar -->
2011-09-08 10:00:09 -05:00
<!-- Status Dialog -->
<div id="noVNC_status"></div>
<!-- Password Dialog -->
<div class="noVNC_center">
<div id="noVNC_password_dlg" class="noVNC_panel">
<ul>
2016-08-30 16:38:09 +02:00
<li>
<label>Password:</label>
<input id="noVNC_password_input" type="password" />
</li>
<li>
<input id="noVNC_password_button" type="button" value="Send Password" class="noVNC_submit" />
</li>
</ul>
</div>
</div>
2011-09-13 13:14:11 -05:00
<!-- Transition Screens -->
<div id="noVNC_transition">
<div id="noVNC_transition_text"></div>
<div class="noVNC_spinner"></div>
</div>
<div id="noVNC_container">
2016-11-14 22:02:12 +01:00
<h1 id="noVNC_logo" class="noVNC_logo" translate="no"><span>no</span><br />VNC</h1>
<!-- HTML5 Canvas -->
<div id="noVNC_screen">
2016-08-25 20:45:52 +02:00
<!-- 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>
<canvas id="noVNC_canvas" width="0" height="0">
Canvas not supported.
</canvas>
</div>
2011-09-08 10:00:09 -05:00
</div>
2016-09-19 15:15:07 +02:00
<audio id="noVNC_bell">
<source src="app/sounds/bell.oga" type="audio/ogg">
<source src="app/sounds/bell.mp3" type="audio/mpeg">
</audio>
2016-09-14 13:52:53 -04:00
<!-- begin scripts -->
<script src="core/util.js"></script>
2016-09-03 13:39:12 -04:00
<script src="app/webutil.js"></script>
2016-09-14 13:52:53 -04:00
<script src="app/ui.js"></script>
<!-- end scripts -->
</body>
2010-04-01 11:36:22 -05:00
</html>