Setting up killswitch frontend

This commit is contained in:
raul 2024-06-07 09:59:33 +02:00
parent a76a2494b2
commit 6be659e177
2 changed files with 6 additions and 0 deletions

View File

@ -38,6 +38,9 @@
<td rowspan=2> <td rowspan=2>
<a target="_blank" href="command/{{ .ClientID }}"><b>CMD</b></a> <a target="_blank" href="command/{{ .ClientID }}"><b>CMD</b></a>
</td> </td>
<td rowspan=2>
<a href="/" hx-post="kill/{{ .ClientID }}" hx-swap="none" id="pointer"><b>KILL</b></a>
</td>
</tr> </tr>
<tr> <tr>
<td>{{ .ClientID }}</td> <td>{{ .ClientID }}</td>

View File

@ -154,7 +154,10 @@ input#commandinput {
input#commandinput:focus { input#commandinput:focus {
outline: 2px solid #ff6e00; outline: 2px solid #ff6e00;
}
a#pointer {
cursor: pointer;
} }