Employment application
Formal employment application with availability.
Fields
Full nametextrequiredEmailemailrequiredPhonetelrequiredPositiontextrequiredEmployment typeselectAvailable start datedateExpected salarynumberSummary of experiencetextarea
Code
<form action="https://formward.eu/f/your-form-id" method="POST" class="space-y-4 max-w-lg">
<label for="name" class="block text-sm font-medium mb-1">Full name</label>
<input type="text" name="name" id="name" required class="block w-full rounded border border-gray-300 p-2" />
<label for="email" class="block text-sm font-medium mb-1">Email</label>
<input type="email" name="email" id="email" required class="block w-full rounded border border-gray-300 p-2" />
<label for="phone" class="block text-sm font-medium mb-1">Phone</label>
<input type="tel" name="phone" id="phone" required class="block w-full rounded border border-gray-300 p-2" />
<label for="position" class="block text-sm font-medium mb-1">Position</label>
<input type="text" name="position" id="position" required class="block w-full rounded border border-gray-300 p-2" />
<label for="type" class="block text-sm font-medium mb-1">Employment type</label>
<select name="type" id="type" class="block w-full rounded border border-gray-300 p-2">
<option value="Full-time">Full-time</option>
<option value="Part-time">Part-time</option>
<option value="Contract">Contract</option>
<option value="Internship">Internship</option>
</select>
<label for="start_date" class="block text-sm font-medium mb-1">Available start date</label>
<input type="date" name="start_date" id="start_date" class="block w-full rounded border border-gray-300 p-2" />
<label for="salary" class="block text-sm font-medium mb-1">Expected salary</label>
<input type="number" name="salary" id="salary" class="block w-full rounded border border-gray-300 p-2" />
<label for="summary" class="block text-sm font-medium mb-1">Summary of experience</label>
<textarea name="summary" id="summary" class="block w-full rounded border border-gray-300 p-2"></textarea>
<input type="text" name="_gotcha" tabindex="-1" autocomplete="off" class="hidden" aria-hidden="true" />
<button type="submit" class="rounded bg-black text-white px-4 py-2">Send</button>
</form>Use this with Formward
Create a form, copy your endpoint, and replace https://formward.eu/f/your-form-id in the code above.