Guides & Tutorials

Accepting form submissions without a server

Cassidy Williams streaming her code editor while talking to a guest

Guides & Tutorials

Accepting form submissions without a server

Cassidy Williams streaming her code editor while talking to a guest

Throughout December we'll be highlighting a different Netlify feature each day. It might just be the thing you need to unlock those creative juices, and dust off that domain you registered but never deployed! Keep an eye on the blog and on Twitter for each feature!

The need to accept form submissions is usually the first reason you might need to add a server to your site's stack. After all, those form posts have to go somewhere, right?

But adding a server to your list of things to configure, scale, and maintain, just so that you can allow your visitors to send you data, is an unwelcome leap in complexity.

That's why Netlify includes the ability to handle form submissions without introducing any other infrastructure into the equation, with Netlify Forms.

Form submissions collected in the Netlify admin page

How it works

When Netlify deploys your site, it looks at the HTML that you are shipping. This "post-processing" step allows Netlify to do number of things such as optimisations snippet injection (We're bound to see more details on that another day this month!). It also means that Netlify can see if there are any HTML form elements which you 'd like us to automatically create a back-end service for.

Telling Netlify you want a form handling API

This sounds like it will be tricky. Nah!

To indicate to Netlify that you want a form handler, all you need to do is add an attribute to the form element in your HTML that you care about, and make sure that your form has a name. Like this:

<form action="/thanks-page" method="POST" name="my-form-name" netlify>
    ...
</form>

By adding that netlify boolean attribute to the form element (or you can use data-netlify="true" if you prefer), Netlify now knows to listen for HTTP POST requests that your visitors submit to that form, and to collect the submissions for you. You can find the submissions (which will have been spam-filtered and safely stored for you) in your Netlify admin app.

After submitting their form data, your site visitors will be directed to the confirmation page you specify in your form's action attribute.

Sound too good to be true? Yeah we get that a lot!

What about client-side rendered forms?

The process above assumes that you are serving your forms as HTML to your visitors. But some popular frameworks generate the HTML using client-side JavaScript. Can we support that too? You bet!

Regardless of which JavaScript frameworks you might use for client-side rendering your form, we can provide the beck-end service to handle the submissions. You can see more details about this in the docs.

Netlify Forms open up a number of interesting possibilities for how submissions are handled and how they can trigger events. And you're not going to need to add a server in order to support these user interactions.

More information

Keep reading

Recent posts

Book cover with the title Deliver web project 10 times faster with Jamstack enterprise

Deliver web projects 10× faster

Get the whitepaper