zekegeek / zekegeek.com

0 stars 0 forks source link

Add contact form #10

Open jtroe opened 4 years ago

jtroe commented 4 years ago
<form action="https://formspree.io/xvoakvpy" method="POST">
  <input type="text" name="name">
  <input type="email" name="_replyto">
  <input type="submit" value="Send">
</form>
jtroe commented 4 years ago

  action="https://formspree.io/xvoakvpy"
  method="POST"
>
  <label>
    Your email:
    <input type="text" name="_replyto">
  </label>
  <label>
    Your message:
    <textarea name="message"></textarea>
  </label>

  <!-- your other form fields go here -->

  <button type="submit">Send</button>
</form>```