Adding a contact form to write.as

I would like to add a contact form using a form backend service. Is there a plugin for fabform or should i just enter the code manually as such

<form action="https://fabform.io/f/{fabform-endpoint-here}" method="post">
  <label for="firstName">First Name</label>
  <input name="firstName" type="text" required>
  <label for="lastName">Last Name</label>
  <input name="lastName" type="text" required>
  <label for="email">Email</label>
  <input name="email" type="email" required>
  <p>Powered by <a href="https://fabform.io" target="_blank">fabform.io</a></p>
  <button class="button is-link" type="submit">Test</button>
</form>

1 Like

Yeah, this seems to work just fine.