Create a ready-to-use contact form with name, email, and message fields. Copy the HTML and paste it into your website — submissions go straight to your inbox.
<form action="https://flowqen.com/api/f/YOUR_FORM_ID" method="POST">
<label>Name *
<input type="text" name="name" placeholder="Your name" required />
</label>
<label>Email *
<input type="email" name="email" placeholder="you@example.com" required />
</label>
<label>Subject
<input type="text" name="subject" placeholder="What is this about?" />
</label>
<label>Message *
<textarea name="message" placeholder="Your message..." rows="4" required></textarea>
</label>
<button type="submit">Submit</button>
</form>Replace YOUR_FORM_ID with the ID from your Flowqen dashboard.
YOUR_FORM_ID with your actual form ID.