Introduction to Submity
Last updated on October 26, 2023
Submity is a powerful tool for creating and managing online forms. This documentation will guide you through the process of creating your first form, understanding the dashboard, and integrating with other services. Whether you're a developer looking to leverage our API or a business owner wanting to streamline data collection, Submity has you covered.
Creating Your First Form
Getting started with Submity is simple. Once you've signed up, you'll be taken to your dashboard. Click on the "New Form" button to open the form builder. You can drag and drop various field types, customize their labels and placeholders, and set validation rules.
// Example: Initializing a Submity form
import { Submity } from 'submity-svelte';
const form = new Submity({
target: document.getElementById('app'),
props: {
formId: 'YOUR_FORM_ID'
}
});Understanding the Dashboard
The dashboard is your central hub for managing all your forms and submissions. You can see an overview of your active forms, recent submissions, and key statistics. From here, you can also access the settings for each form, including integrations and notification preferences.
Note: Your API keys are available in the "Settings" > "API" section of your dashboard. Keep them secure and do not share them publicly.
Was this page helpful?