Event or workshop registration with name, email, and optional details.
Endpoint
POST https://myformconnect.io/f/YOUR_FORM_ID
Replace YOUR_FORM_ID with your form ID from MyFormConnect.
<form action="https://myformconnect.io/f/YOUR_FORM_ID" method="POST"> <input type="text" name="name" placeholder="Full name" required> <input type="email" name="email" placeholder="Email" required> <input type="tel" name="phone" placeholder="Phone"> <input type="text" name="company" placeholder="Company (optional)"> <textarea name="notes" placeholder="Dietary or accessibility needs (optional)"></textarea> <button type="submit">Register</button> </form>