feat (ui): exec fase 1

This commit is contained in:
kodi
2026-03-04 16:39:41 +01:00
parent d96fc19f41
commit 92e0e04905
3 changed files with 240 additions and 3 deletions
+25
View File
@@ -359,6 +359,31 @@
</div>
</div>
<!-- Exec Terminal Modal -->
<div class="modalBack" id="execModalBack" style="display:none;" onclick="closeExecModal(event)">
<div class="modal modalExec" id="execTerminalModal" onclick="event.stopPropagation()">
<div class="modalHeader">
<div class="modalTitle" id="execModalTitle">Exec</div>
<div class="flex">
<span class="statusline" id="execTerminalStatus">Disconnected</span>
<button class="btn small ghost" onclick="containerExecClose()">Sluiten</button>
</div>
</div>
<div class="modalBody execBody">
<pre id="execTerminalOutput" class="execOutput"></pre>
<div class="execInputRow">
<input
class="input mono"
id="execTerminalInput"
placeholder="Type command and press Enter..."
onkeydown="containerExecHandleInputKey(event)"
/>
<button class="btn" onclick="containerExecSendInput()">Send</button>
</div>
</div>
</div>
</div>
<!-- Build Modal -->
<div class="modalBack" id="buildModalBack" style="display:none;" onclick="closeBuildModal(event)">
<div class="modal" onclick="event.stopPropagation()" style="width:700px;">