2024-06-05 09:45:59 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<title>Tiamat Dashboard</title>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link href="/style.css" rel="stylesheet">
|
2024-06-06 09:29:39 +02:00
|
|
|
<script src="/htmx.js" integrity="sha384-qbtR4rS9RrUMECUWDWM2+YGgN3U4V4ZncZ0BvUcg9FGct0jqXz3PUdVpU1p0yrXS"
|
2024-06-05 09:45:59 +02:00
|
|
|
crossorigin="anonymous"></script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
<div id="main">
|
2024-06-07 08:31:52 +02:00
|
|
|
<b>
|
|
|
|
<ul>
|
|
|
|
<li class="hor">
|
|
|
|
<p><a href="/">Home</a></p>
|
|
|
|
</li>
|
|
|
|
<li class="hor">
|
|
|
|
<p><a href="https://git.bulgariu.xyz/raul/aemet" target="_blank">Source code</a></p>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</b>
|
2024-06-05 09:45:59 +02:00
|
|
|
<hr>
|
2024-06-07 08:31:52 +02:00
|
|
|
<h2 align=center>Executing commands for {{ .Client.ClientBasicInfo.Hostname }}</h2>
|
2024-06-06 09:29:39 +02:00
|
|
|
<hr>
|
2024-06-05 09:45:59 +02:00
|
|
|
<div id=command>
|
|
|
|
</div>
|
2024-06-07 08:31:52 +02:00
|
|
|
<br>
|
2024-06-06 09:29:39 +02:00
|
|
|
<form hx-post="/command/{{ .Client.ClientID }}" hx-target="#command" hx-on--after-request="this.reset()">
|
2024-06-07 08:31:52 +02:00
|
|
|
<label><input id="commandinput" type="text" name="cmd" value="" required autofocus></label>
|
2024-06-06 09:29:39 +02:00
|
|
|
<button type="submit" id="but">Submit</button>
|
|
|
|
</form>
|
2024-06-05 09:45:59 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|