Create a new form

<%= form_for @form, local: true do |f| %> <%= f.hidden_field :backend_name, value: 'google_sheets' %>
<%= f.text_field :title, class: 'input', placeholder: '', autocomplete: 'off' %>

Give your document a name.

<%= f.submit class: 'button is-primary' %>
<% end %>

To connect a new online form with an Airtable document please first create the document on Airtable.

<%= form_for @form, local: true do |f| %> <%= f.hidden_field :backend_name, value: 'airtable' %>
<%= f.text_field :airtable_table, class: 'input', placeholder: 'Table 1', autocomplete: 'off' %>

The name of the table in your Airtable base. Your Airtable can have multiple tables/sheets. Which one do you want to use?

<%= f.text_field :airtable_api_key, class: 'input', placeholder: '', autocomplete: 'off' %>

Your Airtable account API Key. You find this one on your Airtable account page.

<%= f.text_field :airtable_app_key, class: 'input', placeholder: '', autocomplete: 'off' %>

The application key of your Airtable document. You find this one on the API page of your Airtable base.

<%= f.submit class: 'button is-primary' %>
<% end %>

Do you need help? <%= link_to 'Let us know!', help_url %>.