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),
})
}

View File

@@ -76,7 +76,7 @@
<form id="signup-form">
<input name="email" id="email" placeholder="email" required style="margin-bottom: 15px;">
<br>
<p id="applicant-message" style="color: green; font-size: 1em; margin: 0.5em 0;"></p>
<p id="applicant-message" style="color: green; font-size: 1em; margin: 0.5em 0; margin-bottom: 1em"></p>
<button type="submit" style="background-color: rgb(193, 135, 29)">Sign Up</button>
</form>