Files
ssh-jumphost/templates/rdp.html

25 lines
840 B
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>RDP-Session</title>
<link rel="stylesheet" href="/static/css/app.css">
</head>
<body>
<div class="session-shell" id="session-shell" data-host-id="{{ host_id }}">
<div class="session-toolbar">
<button id="fullscreen-btn">Vollbild</button>
<button id="ctrlaltdel-btn">Strg+Alt+Entf</button>
<span class="spacer"></span>
<span class="status" id="status">Verbinde ...</span>
<button id="exit-btn" class="btn-danger btn-small" title="Sitzung beenden und Tab schliessen">Exit</button>
</div>
<div id="rdp-display"></div>
</div>
<script src="/static/js/vendor/guacamole-common.js"></script>
<script src="/static/js/rdp.js"></script>
</body>
</html>