tiamat/cmd/templates/command.html

28 lines
706 B
HTML
Raw Normal View History

<!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">
<script href="htmx.js" integrity="sha384-qbtR4rS9RrUMECUWDWM2+YGgN3U4V4ZncZ0BvUcg9FGct0jqXz3PUdVpU1p0yrXS"
crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<div id="main">
<p>Hello {{ .UserAgent }}</p>
<hr>
<div id=command>
</div>
<input type="text" name="command" value="" hx-post="command/{{ .Client.ClientID }}" hx-target="command"
hx-trigger="keyup[keyCode==13]">
<hr>
</div>
</div>
</body>
</html>