mirror of
https://github.com/SkalaraAI/waitlist.git
synced 2025-04-04 02:30:16 -04:00
can't be empty
This commit is contained in:
parent
2cb9783cca
commit
12ed50d96b
|
@ -15,6 +15,11 @@ export default function Home() {
|
|||
const [submitted, setSubmitted] = useState(false);
|
||||
async function handleSubmit(e: any) {
|
||||
e.preventDefault(); // prevent the default form submission behavior
|
||||
if (!email) {
|
||||
setAlertType("error");
|
||||
setAlertMessage("Please enter an email.");
|
||||
return;
|
||||
} // if the email field is empty, do nothing
|
||||
const res = await fetch("/api/waitlist", {
|
||||
method: "POST", // specify the HTTP method
|
||||
headers: { "Content-Type": "application/json" }, // specify the content type
|
||||
|
|
Loading…
Reference in New Issue
Block a user