Some checks failed
Deploy to NAS / deploy (push) Failing after 4s
Remove submodule tracking; backend is now a plain directory in the repo. Also update deploy workflow: remove --recurse-submodules. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
22 lines
570 B
HTML
22 lines
570 B
HTML
{{define "title"}}Login — Reisejournal{{end}}
|
|
|
|
{{define "content"}}
|
|
<main class="container">
|
|
<article class="login-box">
|
|
<h1>REISEJOURNAL</h1>
|
|
{{if .Error}}<p class="err">// {{.Error}}</p>{{end}}
|
|
<form method="post" action="/login">
|
|
<label>Benutzername
|
|
<input name="username" autocomplete="username" value="{{.Username}}">
|
|
</label>
|
|
<label>Passwort
|
|
<input type="password" name="password" autocomplete="current-password">
|
|
</label>
|
|
<button type="submit">Einloggen</button>
|
|
</form>
|
|
</article>
|
|
</main>
|
|
{{end}}
|
|
|
|
{{template "base" .}}
|