Redirect to the main page after signup

This commit is contained in:
Eli Ribble 2025-11-05 14:20:56 +00:00
parent 334deb1ae7
commit e311464b51
No known key found for this signature in database

View file

@ -54,6 +54,5 @@ func postSignup(w http.ResponseWriter, r *http.Request) {
return return
} }
w.WriteHeader(http.StatusOK) http.Redirect(w, r, "/", http.StatusFound)
w.Write([]byte("Form received"))
} }