Formzillion Logo
Get Started

Guides

/

Eleventy

logo
app-logo

Add a form to your 11ty

Initiate the collection of form submissions from your 11ty form using formzillion.
Simply create your form in formzillion and insert your form-id into your form.

Building forms with 11ty and Formzillion

Eleventy is a JavaScript static site generator that transforms templates and content files into static HTML pages. It supports various templating languages, offers flexible setup options, and focuses on content-centric development. It generates performant static sites with extensibility through its plugin system.

This guide will demonstrate the quick process of adding a contact form to your 11ty project and connecting it to Formzillion for submission handling.

How to create a 11ty Contact Form

Step 1 — Create new form endpoint on Formzillion

Sign in to your Formzillion account and create a new form with name 11ty Contact Form or a similar identifier. Formzillion will assign a unique form ID specifically for identifying your 11ty form.

Step 2 — Create a new 11ty project

To initiate the project setup, let's follow the instructions provided in the 11ty Getting Started documentation.

Eleventy is a straightforward static site generator that automatically converts files with recognized extensions into corresponding .html files. To create a contact page, simply add a contact.html file in the root directory, containing the desired HTML content give below. Eleventy will handle the transformation process, generating a contact.html file with the appropriate output.

<div class="heading">
<img src="https://zqpkoahtapmwaejzvraa.supabase.co/storage/v1/object/sign/logo/fz_logo_full.png?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1cmwiOiJsb2dvL2Z6X2xvZ29fZnVsbC5wbmciLCJpYXQiOjE2ODU3MDEzMzAsImV4cCI6MTcxNzIzNzMzMH0.lvfizvXxffwwkTyXjEjWRbf_OqJ0HOVUPYq3Gcu52gw&t=2023-06-02T10%3A22%3A10.613Z"/>
</div>
<h1 class="heading">Contact Us</h1>
<form action="https://dev-app.formzillion.com/f/<FORM_ID>" method="POST">
<div class="form-group">
<label for="text" class="lable">Name</label>
<input type="text" name="name" required />
</div>
<div class="form-group">
<label for="text" class="lable">Email</label>
<input type="email" name="email" required />
</div>
<div class="form-group">
<label for="text" class="lable">Message</label>
<textarea id="message" name="message" rows="4"></textarea>
</div>
<button type="submit">Submit</button>
</form>

Copy

To successfully submit your form to Formzillion, ensure that you include the 'FORM_ID' in the provided form code. This 'FORM_ID' should correspond to the ID assigned to your specific Formzillion form.

Once you have added the form code, you can now proceed to add the necessary styling to your project. You can either add the CSS code directly to the HTML file

<style>
body {
background: #24292e;
cursor: pointer;
margin:100px;
font-family: roboto, sans-serif;
font-size: 14px;
padding-left: 6px;
padding-right: 0.5rem;
white-space: nowrap;
color: #fff;
line-height: 1.4;
font-family: -apple-system, BlinkMacSystemFont, “Segoe UI”, Roboto,
Oxygen, Ubuntu, Cantarell, “Open Sans”, “Helvetica Neue”, sans-serif;
}

.form-group {
margin-top: 16px;
display: flex;
flex-direction: column;
}

.lable {
margin-bottom: 5px;
font-size: 16px;
}

form {
max-width: 320px;
margin: 32px auto;
}

input {
background: rgba(0, 0, 0, 0.32);
border: 0;
padding: 16px;
border-radius: 6px;
color: #fff;
width: 290px;
}

input:focus {
border-color: #20c98b;
outline: 0;
box-shadow: 0 0 0 0.25rem rgb(32 201 139 / 25%);
}

textarea {
background: rgba(0, 0, 0, 0.32);
border: 0;
padding: 16px;
border-radius: 6px;
color: #fff;
width: 290px;
}

textarea:focus {
border-color: #20c98b;
outline: 0;
box-shadow: 0 0 0 0.25rem rgb(32 201 139 / 25%);
}

button {
width: 320px;
display: inline-block;
margin-top: 16px;
border: 0;
padding: 16px;
color: white;
background: orangered;
border-radius: 6px;
font-weight: bold;
cursor: pointer;
}

::placeholder {
/* Chrome, Firefox, Opera, Safari 10.1+ */
color: #72737f;
opacity: 1;
/* Firefox */
}

:-ms-input-placeholder {
/* Internet Explorer 10-11 */
color: #72737f;
}

::-ms-input-placeholder {
/* Microsoft Edge */
color: #72737f;
}

.heading {
text-align: center;
}

img {
width: 30%;
}
</style>

Copy

To install 11ty and generate the files, please open your terminal and enter the following command:

npx @11ty/eleventy

Copy

To start the server and run your application, you can execute the following command in the terminal:

npx @11ty/eleventy --serve

Copy

You can now access the site in your browser by visiting https://localhost:8080.Below observe the sample site displayed on the screen:

11ty site

Great job! You have successfully created a new 11ty site. Now, let's proceed to learn how to add a contact form into your project.

And there you have it! Once you fill out and submit the form, you will be able to view the default submission thank you page.

Thank you

Congratulations! Your 11ty site now has the contact form powered by Formzillion!

Ready to send your first form submission?

Formzillion Logo Formzillion Cloud

The fastest way to organize and manage your forms

Get started for free
Formzillion Logo Formzillion Self-hosted

The optimal solution for teams that want absolute control of their forms data.

Read Docs
Follow us

Copyright © 2023 Zillionstack Inc. All rights reserved.

PrivacyTerms