Contact forms for static websites. No JavaScript required.

Add a working contact form to any HTML page in under a minute. Just point your form's action URL to us and start receiving submissions.

Get Started Free

How It Works

Create a form endpoint

Register an account and set up a new form in the dashboard. You get a unique submission URL.

Add the HTML form to your site

Copy the action URL into a standard HTML form. No scripts, no build steps, no dependencies.

Receive submissions

Get notified by email and view every submission in your dashboard. It just works.

Features

Zero JavaScript

Pure HTML forms. No client-side libraries to load, no bundle size impact, no compatibility issues.

Anti-spam protection

Built-in spam filtering with rate limiting and domain validation. No reCAPTCHA needed.

Email notifications

Receive an email every time someone submits your form, with all the submitted data included.

Submission dashboard

View, search, and manage all your form submissions in one place through a clean web interface.

Custom redirect URLs

Send visitors to your own thank-you page after submission. Full control over the user experience.

GDPR-friendly

EU-hosted infrastructure with no third-party tracking scripts. Data stays where it should.

Drop-in HTML Form

This is all the code you need. Paste it into any HTML page.

<form action="https://forms.glimtio.com/f/your-form-id" method="POST"> <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> <button type="submit">Send</button> </form>