Quickstart
Get your first form submission in under 5 minutes.
1. Create an Account
Sign up at atlasforms.app/signup using email or OAuth (Google/GitHub).
2. Create a Project
Projects organize your forms. Create one from the dashboard:
- Click New Project
- Enter a name (e.g., "My Website")
- Click Create
3. Create a Form
Inside your project, create a form:
- Click New Form
- Enter a name (e.g., "Contact Form")
- Click Create
You'll see your form's endpoint URL:
https://atlasforms.app/f/abc123xyz
4. Configure for Local Testing
To test from localhost, register your IP address:
- Go to Form Settings → Localhost Testing
- Click Register My IP
- Your IP is now authorized for localhost submissions
Why IP registration?
Localhost origins are identical for all developers. IP registration ensures only your machine can submit to your form during development.
For production: Add your domains under Allowed Origins (e.g., example.com, www.example.com).
5. Add the Form to Your Website
Point your form at your Atlas endpoint using HTML, JavaScript, or React:
<form action="https://atlasforms.app/f/abc123xyz" method="POST">
<input type="text" name="name" placeholder="Your name" required>
<input type="email" name="email" placeholder="Your email" required>
<textarea name="message" placeholder="Your message" required></textarea>
<button type="submit">Send</button>
</form>6. View Submissions
Go to your dashboard to see incoming submissions in real-time. Each submission shows:
- Form data (name, email, message, etc.)
- Timestamp
- IP address and user agent
- Webhook delivery status