Quickstart Guide
Welcome to Lucid Forms! This guide will walk you through setting up a contact form and receiving submissions in less than 2 minutes. No servers, backend code, or database setup required.
-
Create a Free Account
Section titled “Create a Free Account”Sign up for a free account at Lucid Forms Dashboard. The Free Plan includes:
- 250 submissions per month
- 1 recipient email for alerts
- AI Spam Filter automatically active
- Centralized submission dashboard
-
Create a Form & Copy the Endpoint
Section titled “Create a Form & Copy the Endpoint”Once logged in, click the Create Form button. Give your form a name (e.g., Landing Page Contact Form). Once created, you will see a unique form endpoint:
https://api.lucidforms.co/f/{your-form-id}Keep this URL handy—you will paste it into your HTML form’s action attribute.
-
Paste the Endpoint in Your HTML Code
Section titled “Paste the Endpoint in Your HTML Code”Open your website’s HTML file and update your
<form>element. Set theactionattribute to your unique endpoint URL and ensure themethodis set toPOST:<form action="https://api.lucidforms.co/f/{your-form-id}" method="POST"><!-- Ensure every input has a name attribute so Lucid Forms can save the data --><label for="name">Name</label><input type="text" id="name" name="name" required /><label for="email">Email</label><input type="email" id="email" name="email" required /><label for="message">Message</label><textarea id="message" name="message" required></textarea><!-- Honeypot anti-spam field (Optional, but recommended) --><input type="text" name="_honeypot" style="display:none" tabindex="-1" autocomplete="off" /><button type="submit">Send Message</button></form> -
Submit a Test Entry
Section titled “Submit a Test Entry”Open your website in your browser, fill out your form, and hit Submit.
- By default, you will be redirected to the default Lucid Forms “Thank You” page.
- You will receive an instant email notification with the submission details.
-
View Submissions in the Dashboard
Section titled “View Submissions in the Dashboard”Head back to your Lucid Forms Dashboard and click on your form. You will see your test submission neatly organized inside the interactive submissions table.