Static Sites Integration Guide
Complete guide to integrate MyFormCapture with Static Sites
Add MyFormCapture forms to any static website built with HTML, CSS, and JavaScript. Works with custom-built sites, GitHub Pages, Netlify, Vercel, and other static hosting platforms.
Prerequisites
- A MyFormCapture account - Sign up here
- A form created in your MyFormCapture dashboard with its UUID copied
- Access to your website's HTML files
- Basic understanding of HTML structure
- FTP access or file manager (for hosted sites)
Integration Methods
HTML Form (Recommended)
Add a simple HTML form that posts directly to MyFormCapture. Optional: include loader.js for AJAX submission and validation.
Copy your form UUID from MyFormCapture
- Log in to your MyFormCapture dashboard
- Open the form you want to use
- Copy the form UUID from the form URL or settings page (e.g.
550e8400-e29b-41d4-a716-446655440000)
Important Note
Add the form HTML to your page
- Open your HTML file (e.g.
index.html,contact.html) - Locate where you want the form to appear
- Paste the form code below, replacing
YOUR_FORM_UUIDwith your actual UUID
<form action="https://myformcapture.com/f/YOUR_FORM_UUID" method="POST" data-mfc="true">
<p>
<label for="name">Name *</label><br>
<input type="text" id="name" name="name" required>
</p>
<p>
<label for="email">Email *</label><br>
<input type="email" id="email" name="email" required>
</p>
<p>
<label for="message">Message</label><br>
<textarea id="message" name="message" rows="4"></textarea>
</p>
<button type="submit">Send Message</button>
</form>
<!-- Optional: add loader.js for AJAX submission and validation -->
<!-- Remove the script tag below for a plain HTML form POST -->
<script src="https://myformcapture.com/loader.js" data-client-id="YOUR_FORM_UUID"></script>
Important Note
YOUR_FORM_UUID with your actual form UUID. The data-mfc="true" attribute tells the loader script which form to enhance.
Upload and test
- Save your HTML file
- Upload to your web server via FTP, file manager, or git push
- Clear browser cache and visit your site
- Fill in the form and click Submit
- Check your MyFormCapture dashboard under Leads or Form Responses to confirm the submission arrived
Important Note
Related Integrations
References & Official Documentation
Next Steps
Configure MyFormCapture
- Set up your timezone
- Configure lead notifications
- Set up advanced spam detection
- Add team members to your account
Advanced Features
- Use our custom form templates
- Try AI Insights for Leads
- Integrate with your CRM
- Set up automated workflows