Initial commit
CI / test (push) Canceled after 0s

This commit is contained in:
2026-09-12 22:22:17 +02:00
commit 904d14b64c
314 changed files with 31884 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
{{define "title"}}Anmelden{{end}}
{{define "main"}}
<section class='panel narrow'>
<h2>Anmelden</h2>
{{$form := .Form}}
{{with $form.Message}}<p class='form-message error'>{{.}}</p>{{end}}
<form action='{{webPath "login"}}' method='POST'>
<input type='hidden' name='csrf_token' value='{{.CSRFToken}}'>
<label for='email'>E-Mail-Adresse</label>
<input id='email' name='email' type='email' value='{{$form.Email}}' autocomplete='email' required>
{{with index $form.Errors "email"}}<p class='field-error'>{{.}}</p>{{end}}
<label for='password'>Passwort</label>
<input id='password' name='password' type='password' autocomplete='current-password' required>
{{with index $form.Errors "password"}}<p class='field-error'>{{.}}</p>{{end}}
<label class='checkbox'><input name='remember_email' type='checkbox' value='true' {{if $form.RememberEmail}}checked{{end}}> E-Mail merken</label>
<button type='submit'>Anmelden</button>
</form>
</section>
{{end}}