editing success message

This commit is contained in:
metacryst
2025-09-30 17:55:52 -05:00
parent 420ff25f60
commit bf7bb6a720
2 changed files with 2 additions and 2 deletions

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", email),
Message: fmt.Sprintf("Signup received for %s. We will email you when we launch!", email),
})
}