A free application form template for any review workflow.
Collect program, membership, grant, scholarship, rental, volunteer, and job applications with one HTML form. Submissions land in email, dashboard, and your review tools through signed webhooks.

Use sections so long applications stay readable.
Fieldsets make application forms easier to scan and more accessible. Start with personal details, ask the decision-making questions, then collect optional supporting files.
<form action="https://splitforms.com/api/submit"
method="POST"
enctype="multipart/form-data">
<input type="hidden" name="access_key" value="YOUR_ACCESS_KEY" />
<input type="hidden" name="subject" value="New application" />
<fieldset>
<legend>Personal information</legend>
<label>Full name <input name="name" required /></label>
<label>Email <input name="email" type="email" autocomplete="email" required /></label>
<label>Phone <input name="phone" type="tel" autocomplete="tel" /></label>
</fieldset>
<fieldset>
<legend>Application details</legend>
<label>Applying for
<select name="applying_for" required>
<option value="">Choose one</option>
<option>Membership</option>
<option>Program</option>
<option>Grant</option>
<option>Scholarship</option>
<option>Other</option>
</select>
</label>
<label>Why are you a good fit?
<textarea name="why_fit" rows="5" required></textarea>
</label>
</fieldset>
<fieldset>
<legend>Supporting documents</legend>
<label>Resume, CV, or supporting PDF
<input name="supporting_file" type="file" accept=".pdf,.doc,.docx" />
</label>
</fieldset>
<input type="checkbox" name="botcheck" style="display:none" tabindex="-1" />
<button type="submit">Submit application</button>
</form>Program applications
Collect eligibility, experience, availability, motivation, and supporting documents.
Membership applications
Ask for contact details, member type, references, consent, and reason for joining.
Grant or scholarship applications
Capture project details, requested amount, deadlines, documents, and reviewer routing data.
Rental or job applications
Use stricter fields for income, role, resume, references, location, and compliance language.
Application form HTML guide
A deeper guide to sections, file uploads, and application format.
Job application form
Careers-page form with resume upload and hiring workflow routing.
Rental application form
Pre-screen rental applicants before scheduling a showing.
File uploads
Accept resumes, PDFs, references, screenshots, and supporting documents.
What should an application form include?
Most application forms need personal information, the thing being applied for, eligibility or experience questions, references or links, consent text, and optional file uploads. Keep only fields that change the review decision.
Can I use this as an online application form?
Yes. The form posts directly to splitforms, emails your team, stores the submission in the dashboard, and can forward the application to Notion, Airtable, Google Sheets, Slack, or a custom review system.
Can applicants upload resumes or documents?
Yes. Add enctype=multipart/form-data to the form and use input type=file for PDFs, DOCX files, images, or supporting documents. Use the accept attribute to guide file type selection.
Is this the same as a job application form?
A job application form is one application-form variant. This template is broader: memberships, programs, scholarships, grants, rentals, volunteer applications, and jobs. Use the dedicated job template when hiring is the only use case.