Do you support forms?
This guide is for users who use Tiiny Host to upload a project which has a form and requires to collect submissions based on user responses. Please read this guide learn more about how to receive form submissions and user responses.
Why Forms Don't Work by Default
Tiny Host is a static site hosting service, which means it only serves HTML, CSS, and JavaScript files. Static sites cannot process form submissions on their own because they don't have a backend server to handle the data.
Solution: Use FormSubmit.co
The good news is you can easily add working forms to your Tiny Host site using FormSubmit.co - a free service that handles form submissions for you.
How to Add a Form
Simply add this code snippet to your HTML page:
<form action="https://formsubmit.co/your@email.com" method="POST">
<label for="name">Name:</label>
<input type="text" name="name" id="name" required>
<label for="email">Email:</label>
<input type="email" name="email" id="email" required>
<label for="message">Message:</label>
<textarea name="message" id="message" required></textarea>
<button type="submit">Send</button>
</form>
Important: Replace your@email.com with your actual email address where you want to receive form submissions.
How It Works
- Replace
your@email.comin the form action with your email - The first time someone submits the form, FormSubmit will send you a confirmation email
- Click the confirmation link to activate the form
- All future submissions will be sent directly to your inbox
Visit formsubmit.co for full documentation and advanced configuration options.
Building With AI
If you have built a website or quiz with an AI tool (e.g. ChatGPT or Claude), please ask your AI tool to modify your code to make it compatible to receive form submission on Tiiny Host using this prompt:
Please modify the code to use https://formsubmit.co for all form submissions and send all submission to my email address <email address>
Replace <email address> with your email address.
Updated on: 16/04/2026
Thank you!
