second commit

This commit is contained in:
2026-08-19 22:33:19 +02:00
parent 411812e954
commit 199f306993
107 changed files with 5984 additions and 0 deletions

23
templates/rdp.html Normal file
View File

@ -0,0 +1,23 @@
<!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">
<div class="session-toolbar">
<button id="fullscreen-btn">Vollbild</button>
<span class="spacer"></span>
<span class="status" id="status">Verbinde ...</span>
</div>
<div id="rdp-display"></div>
</div>
<script src="/static/js/vendor/guacamole-common.js"></script>
<script>window.JUMPHOST_HOST_ID = {{ host_id }};</script>
<script src="/static/js/rdp.js"></script>
</body>
</html>