Convert backend from submodule to regular directory
Some checks failed
Deploy to NAS / deploy (push) Failing after 4s
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>
This commit is contained in:
21
backend/internal/api/templates/login.html
Normal file
21
backend/internal/api/templates/login.html
Normal file
@@ -0,0 +1,21 @@
|
||||
{{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" .}}
|
||||
Reference in New Issue
Block a user