48 lines
1.4 KiB
HTML
48 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>Tiamat | Filesystem for {{ .Client.ClientBasicInfo.Hostname }}</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link href="/style.css" rel="stylesheet">
|
|
<script src="https://unpkg.com/htmx.org@1.9.12"
|
|
integrity="sha384-ujb1lZYygJmzgSwoxRggbCHcjc0rB2XoQrxeTUQyRjrOnlCoYta87iKBWq3EsdM2"
|
|
crossorigin="anonymous"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div id="main">
|
|
<b>
|
|
<ul>
|
|
<li class="hor">
|
|
<p><a href="/">Home</a></p>
|
|
</li>
|
|
<li class="hor">
|
|
<p><a href="https://git.bulgariu.xyz/raul/tiamat" target="_blank">Source code</a></p>
|
|
</li>
|
|
<li class="hor">
|
|
<p><a href="/dump" target="_blank">Dump clients</a></p>
|
|
</li>
|
|
<li class="hor">
|
|
<p><a hx-post="/save" hx-swap="none" target="_blank" id="pointer">Save clients</a></p>
|
|
</li>
|
|
</ul>
|
|
</b>
|
|
<hr>
|
|
<h2 align=center>Filesystem for {{ .Client.ClientBasicInfo.Hostname }}</h2>
|
|
<form hx-post="/ls/{{ .Client.ClientID }}" hx-target="#files">
|
|
<label><input id="fileinput" type="text" name="cmd" value="" required autofocus></label>
|
|
<button type="submit" id="but">Submit</button>
|
|
</form>
|
|
<div id=files>
|
|
</div>
|
|
<br>
|
|
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|