First not working app skeleton with nix support and dependency setup and generated logo not final structure

This commit is contained in:
Jonas Hahn
2025-08-22 17:37:43 +02:00
parent 99306dd26f
commit 6f53cddf6c
24 changed files with 1382 additions and 87 deletions

13
templates/login.html Normal file
View File

@@ -0,0 +1,13 @@
{{define "login"}}{{template "base" .}}{{end}}
{{define "content"}}
<div class="card">
<h2>Sign in with your email</h2>
<p class="small">No password needed. We'll send you a magic link (for now it prints in the server logs).</p>
<form method="POST" action="/login">
<label class="label">Email</label>
<input class="input" type="email" name="email" placeholder="you@example.com" required>
<div style="height:8px"></div>
<button class="btn btn-primary" type="submit">Send magic link</button>
</form>
</div>
{{end}}