feat (ui): exec fase 2
This commit is contained in:
@@ -366,19 +366,27 @@
|
||||
<div class="modalTitle" id="execModalTitle">Exec</div>
|
||||
<div class="flex">
|
||||
<span class="statusline" id="execTerminalStatus">Disconnected</span>
|
||||
<button class="btn small ghost" id="execRawModeBtn" onclick="containerExecToggleRawMode()">Raw keys: Off</button>
|
||||
<button class="btn small ghost" onclick="containerExecClose()">Sluiten</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modalBody execBody">
|
||||
<pre id="execTerminalOutput" class="execOutput"></pre>
|
||||
<div class="execInputRow">
|
||||
<span class="statusline" id="execTerminalBufferInfo"></span>
|
||||
<input
|
||||
class="input mono"
|
||||
id="execTerminalInput"
|
||||
placeholder="Type command and press Enter..."
|
||||
onkeydown="containerExecHandleInputKey(event)"
|
||||
onpaste="containerExecHandleInputPaste(event)"
|
||||
onblur="containerExecHandleInputBlur(event)"
|
||||
autocomplete="off"
|
||||
autocorrect="off"
|
||||
autocapitalize="off"
|
||||
spellcheck="false"
|
||||
/>
|
||||
<button class="btn" onclick="containerExecSendInput()">Send</button>
|
||||
<button class="btn" id="execTerminalSendBtn" onclick="containerExecSendInput()">Send</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user