Astro integration
Astro renders HTML by default: the same native form from the plain HTML guide works inside an .astro component, with no client script required.
---
// Sin JavaScript de cliente: el navegador envía el formulario directamente a Farvane.
// Si defines una URL de redirección en los ajustes del formulario, el usuario acaba ahí.
---
<form action="https://farvane-api.panergos.com/api/v1/submit" method="POST">
<input type="hidden" name="access_key" value="YOUR_ACCESS_KEY_HERE" />
<!-- Honeypot anti-spam: debe quedar oculto y vacío -->
<input type="checkbox" name="botcheck" style="display: none" tabindex="-1" autocomplete="off" />
<label>Nombre
<input type="text" name="name" required />
</label>
<label>Email
<input type="email" name="email" required />
</label>
<label>Mensaje
<textarea name="message" required></textarea>
</label>
<button type="submit">Enviar</button>
</form>The frontmatter (the area between the top --- fences) can stay empty: a classic form POST needs nothing server-side and no client hydration. botcheck is still the required honeypot, and access_key identifies your form, same as every other guide.
Next step: create your account and copy your real access_key.