Add login support and oobe

This commit is contained in:
2026-01-29 15:08:12 -06:00
parent c3ef57b8b6
commit 3919384b57
16 changed files with 1386 additions and 70 deletions

View File

@@ -0,0 +1,27 @@
func Components.ShellSimple(title, html, $htmx)
{
return <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TYTD - {title}</title>
<link rel="stylesheet" href="beer.min.css">
<link rel="stylesheet" href="theme.css">
<script type="module" src="beer.min.js" defer></script>
<if(htmx)>
<true>
<script src="htmx.min.js" defer></script>
</true>
</if>
</head>
<body>
<main class="responsive">
<raw(html)>
</main>
</body>
</html>;
}