Skip to content

Instantly share code, notes, and snippets.

@dnnysng
Last active March 8, 2022 03:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dnnysng/d32d2ae2b569bf7465dc81a22dfc08e1 to your computer and use it in GitHub Desktop.
Save dnnysng/d32d2ae2b569bf7465dc81a22dfc08e1 to your computer and use it in GitHub Desktop.
This is a contact form setup for React & Netlify
<form name="contact" method="post">
<input type="hidden" name="form-name" value="contact" />
<label for="name">Name</label>
<input type="text" name="name" placeholder="Your name.." />
<label for="email">Email</label>
<input type="email" name="email" placeholder="Your email.." />
<label for="message">Message</label>
<textarea
name="message"
placeholder="Write message.."/
></textarea>
<input type="submit" value="Submit" />
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment