95 lines
4.5 KiB
HTML
95 lines
4.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="noVNC_loading">
|
|
<head>
|
|
|
|
<!--
|
|
noVNC is licensed under the MPL 2.0 (see LICENSE.txt)
|
|
This file is licensed under the 2-Clause BSD license (see LICENSE.txt).
|
|
-->
|
|
<title>KasmVNC</title>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<!-- Icons (see app/images/icons/Makefile for what the sizes are for) -->
|
|
<link rel="icon" sizes="16x16" type="image/png" href="app/images/icons/368_kasm_logo_only_16x16.png">
|
|
<link rel="icon" sizes="24x24" type="image/png" href="app/images/icons/368_kasm_logo_only_24x24.png">
|
|
<link rel="icon" sizes="32x32" type="image/png" href="app/images/icons/368_kasm_logo_only_32x32.png">
|
|
<link rel="icon" sizes="48x48" type="image/png" href="app/images/icons/368_kasm_logo_only_48x48.png">
|
|
<link rel="icon" sizes="60x60" type="image/png" href="app/images/icons/368_kasm_logo_only_60x60.png">
|
|
<link rel="icon" sizes="64x64" type="image/png" href="app/images/icons/368_kasm_logo_only_64x64.png">
|
|
<link rel="icon" sizes="72x72" type="image/png" href="app/images/icons/368_kasm_logo_only_72x72.png">
|
|
<link rel="icon" sizes="76x76" type="image/png" href="app/images/icons/368_kasm_logo_only_76x76.png">
|
|
<link rel="icon" sizes="96x96" type="image/png" href="app/images/icons/368_kasm_logo_only_96x96.png">
|
|
<link rel="icon" sizes="120x120" type="image/png" href="app/images/icons/368_kasm_logo_only_120x120.png">
|
|
<link rel="icon" sizes="144x144" type="image/png" href="app/images/icons/368_kasm_logo_only_144x144.png">
|
|
<link rel="icon" sizes="152x152" type="image/png" href="app/images/icons/368_kasm_logo_only_152x152.png">
|
|
<link rel="icon" sizes="192x192" type="image/png" href="app/images/icons/368_kasm_logo_only_192x192.png">
|
|
<!-- Firefox currently mishandles SVG, see #1419039
|
|
<link rel="icon" sizes="any" type="image/svg+xml" href="app/images/icons/kasm-icon.svg">
|
|
-->
|
|
<!-- Repeated last so that legacy handling will pick this -->
|
|
<link rel="icon" sizes="16x16" type="image/png" href="app/images/icons/368_kasm_logo_only_16x16.png">
|
|
|
|
<!-- Apple iOS Safari settings -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
<!-- Home Screen Icons (favourites and bookmarks use the normal icons) -->
|
|
<link rel="apple-touch-icon" sizes="60x60" type="image/png" href="app/images/icons/368_kasm_logo_only_60x60.png">
|
|
<link rel="apple-touch-icon" sizes="76x76" type="image/png" href="app/images/icons/368_kasm_logo_only_76x76.png">
|
|
<link rel="apple-touch-icon" sizes="120x120" type="image/png" href="app/images/icons/368_kasm_logo_only_120x120.png">
|
|
<link rel="apple-touch-icon" sizes="152x152" type="image/png" href="app/images/icons/368_kasm_logo_only_152x152.png">
|
|
|
|
<script src="vendor/interact.min.js"></script>
|
|
|
|
<!-- Stylesheets -->
|
|
<link rel="stylesheet" href="app/styles/base.css">
|
|
|
|
<script src="app/error-handler.js"></script>
|
|
|
|
<script>
|
|
let isInsideKasmVDI = false;
|
|
try {
|
|
isInsideKasmVDI = (window.self !== window.top);
|
|
} catch (e) {
|
|
isInsideKasmVDI = true;
|
|
}
|
|
</script>
|
|
|
|
<script type="module" crossorigin="use-credentials" src="app/ui_screen.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="noVNC_fallback_error" class="noVNC_center">
|
|
<div>
|
|
<div id="noVNC_close_error" onclick="document.getElementById('noVNC_fallback_error').remove()"></div>
|
|
<div>KasmVNC encountered an error:</div>
|
|
<br>
|
|
<div id="noVNC_fallback_errormsg"></div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<!-- Status Dialog -->
|
|
<div id="noVNC_status"></div>
|
|
|
|
<!-- Connect button -->
|
|
<div class="noVNC_center">
|
|
<div id="noVNC_connect_dlg">
|
|
<div id="noVNC_connect_button">
|
|
<div>
|
|
<img alt="" src="app/images/connect.svg"> Connect
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- This is where the RFB elements will attach -->
|
|
<div id="noVNC_container">
|
|
<!-- 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"
|
|
autocomplete="off" spellcheck="false" tabindex="-1"></textarea>
|
|
</div>
|
|
</body> |