Astro forms
Keep an Astro site static while giving its forms a production backend and dashboard. Browse 46 templates that generate clean Astro code pointing to your Formward endpoint.
Implementation notes
- Paste the form into an Astro page
- Replace the endpoint placeholder
- Deploy and verify a real submission
A working Astro contact form
This server-rendered example is generated specifically for Astro. Replace the endpoint placeholder with your public Formward form ID; it is not a secret.
Best for
Content-focused Astro sites that ship little or no client JavaScript but still require reliable contact forms.
Watch for
Test from the deployed origin because local previews can hide CSP, redirect and allowed-domain configuration issues.
---
// SimpleContactForm.astro — drop into src/components and render it in a page.
---
<form action="https://forms.formward.eu/f/your-form-id" 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>
<input type="text" name="_gotcha" tabindex="-1" autocomplete="off" style="position:absolute;left:-9999px" aria-hidden="true" />
<button type="submit">Send</button>
</form>
Application forms
6Simple job application
A short job application capturing the essentials.
View Astro code →Rental application
Collect applicant details for a rental property.
View Astro code →Job application
Standard job application with role and resume details.
View Astro code →Vendor application
Onboard a new vendor or supplier.
View Astro code →Employment application
Formal employment application with availability.
View Astro code →Tenant application
Screen prospective tenants for a unit.
View Astro code →Contact forms
6Simple contact
A minimal contact form with name, email and message.
View Astro code →Contact me
Personal contact form for freelancers and creators.
View Astro code →Contact us
General contact form for a company or team.
View Astro code →Inquiry
Capture a general inquiry or question.
View Astro code →Contact sales
Route qualified leads to your sales team.
View Astro code →Media inquiry
Press and media contact form with deadlines.
View Astro code →Donation forms
3Feedback forms
9Customer satisfaction survey
Measure customer satisfaction (CSAT).
View Astro code →Documentation feedback
Collect feedback on docs and help articles.
View Astro code →NPS survey
Net Promoter Score survey with a 0-10 rating.
View Astro code →Complaint form
Let customers file a formal complaint.
View Astro code →Client feedback form
Gather feedback from clients after a project.
View Astro code →Anonymous feedback
Collect candid feedback without identifying details.
View Astro code →Event feedback
Get attendee feedback after an event.
View Astro code →Course evaluation
Evaluate a course and its instructor.
View Astro code →Open house feedback
Capture visitor impressions after an open house.
View Astro code →Order forms
5Bakery order
Take custom bakery and cake orders.
View Astro code →Catering order
Request catering for an event.
View Astro code →T-shirt order
Order custom or branded t-shirts.
View Astro code →Change order
Request changes to an existing project or contract.
View Astro code →Product order
Generic product order form.
View Astro code →Registration forms
5Event registration
Register attendees for an event.
View Astro code →Course enrollment
Enroll students into a course.
View Astro code →Contest entry
Collect entries for a contest or giveaway.
View Astro code →Webinar registration
Sign up attendees for a webinar.
View Astro code →Warranty registration
Register a product for warranty coverage.
View Astro code →Request forms
9RMA request
Return merchandise authorization request.
View Astro code →Change request
Submit a change request for review.
View Astro code →Maintenance request
Report a maintenance or repair issue.
View Astro code →Purchase request
Request approval to purchase goods or services.
View Astro code →Creative request
Brief the creative team on a new request.
View Astro code →Refund request
Request a refund for an order.
View Astro code →Payment request
Request a payment or invoice settlement.
View Astro code →Shipping request
Request shipment of an order or item.
View Astro code →Support request
Open a support ticket.
View Astro code →