Add required config to signin context

This commit is contained in:
Eli Ribble 2026-02-25 16:09:10 +00:00
parent 2bb4a134b2
commit 2d2a8248c4
No known key found for this signature in database
4 changed files with 23 additions and 12 deletions

View file

@ -38,7 +38,7 @@
</div>
<form method="POST" action="/signin">
<input type="hidden" name="next" value="{{ .Next }}" />
<input type="hidden" name="next" value="{{ .C.Next }}" />
<div class="mb-3">
<label for="username" class="form-label">Username</label>
<input
@ -59,7 +59,7 @@
/>
</div>
{{ if .InvalidCredentials }}
{{ if .C.InvalidCredentials }}
<div class="alert alert-danger" role="alert">
The credentials you provided weren't recognized.
</div>