closes #14
All checks were successful
GoLang Tests / Run Go Tests (push) Successful in 33s

This commit is contained in:
2025-09-04 22:07:54 +02:00
parent 9ded540314
commit fe442e8eef
5 changed files with 113 additions and 107 deletions

View File

@@ -19,7 +19,7 @@ func UserHandler(w http.ResponseWriter, r *http.Request) {
func LoginHandler(w http.ResponseWriter, r *http.Request) {
switch r.Method {
case http.MethodGet:
showLoginPage(w, r, false)
showLoginPage(w, r, true, "")
case http.MethodPost:
loginUser(w, r)
default: