Compare commits

..

2 Commits

Author SHA1 Message Date
ea0fdee0e0 i und j sollten jetzt korrekt verwendet werden 2023-10-05 17:01:49 +02:00
61c895d53f Eingabemaske funktioniert soweit
i und j sollten jetzt richtig verwendet werden
2023-10-05 17:01:24 +02:00

View File

@ -42,7 +42,6 @@ func main() {
}) })
mux.HandleFunc("/add-participant/", func(w http.ResponseWriter, r *http.Request) { mux.HandleFunc("/add-participant/", func(w http.ResponseWriter, r *http.Request) {
i++ i++
j = i
template.Must(template.ParseFiles("templates/index.html", "templates/participant.html")).ExecuteTemplate(w, "participant", i) template.Must(template.ParseFiles("templates/index.html", "templates/participant.html")).ExecuteTemplate(w, "participant", i)
}) })
mux.HandleFunc("/submit/", func(w http.ResponseWriter, r *http.Request) { mux.HandleFunc("/submit/", func(w http.ResponseWriter, r *http.Request) {