Better message 2

This commit is contained in:
metacryst
2025-09-30 18:00:02 -05:00
parent bf7bb6a720
commit a01fb24a69

View File

@@ -58,7 +58,7 @@ func HandleSignup(w http.ResponseWriter, r *http.Request) {
// Respond with success
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(SignupResponse{
Message: fmt.Sprintf("Signup received for %s. We will email you when we launch!", email),
Message: fmt.Sprintf("Signup received. In the coming days, you will receive an email telling you how to join."),
})
}