2022-02-21 14:16:06 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta name="description" content="Small web server to send Wake-on-LAN requests to its local network">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
|
|
<link rel="stylesheet" href="/style.css">
|
|
|
|
<title>{{ .Title }} - miniwol</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<nav>
|
|
|
|
<h1>miniwol</h1>
|
|
|
|
<div style="flex-grow: 1;"></div>
|
|
|
|
{{ if .Auth }}
|
|
|
|
<form action="/deauth" method="post">
|
2022-04-28 09:10:40 +00:00
|
|
|
<input type="submit" value="⏻" title="Logout">
|
2022-02-21 14:16:06 +00:00
|
|
|
</form>
|
|
|
|
{{ end }}
|
|
|
|
</nav>
|
|
|
|
<div>{{ .Content }}</div>
|
|
|
|
</body>
|
|
|
|
</html>
|