Course evaluation
Evaluate a course and its instructor.
Why these fields
- Course name: Course name captures a short, searchable answer and is required to complete the request.
- Instructor: Instructor captures a short, searchable answer but remains optional.
- Overall rating: Overall rating keeps answers consistent for filtering and routing but remains optional.
- Comments: Comments leaves room for context and detail but remains optional.
Fields
Course nametextrequiredInstructortextOverall ratingselectCommentstextarea
Preview
Code
<form action="https://forms.formward.eu/f/your-form-id" method="POST" class="space-y-4 max-w-lg">
<label for="course" class="block text-sm font-medium mb-1">Course name</label>
<input type="text" name="course" id="course" required class="block w-full rounded border border-gray-300 p-2" />
<label for="instructor" class="block text-sm font-medium mb-1">Instructor</label>
<input type="text" name="instructor" id="instructor" class="block w-full rounded border border-gray-300 p-2" />
<label for="rating" class="block text-sm font-medium mb-1">Overall rating</label>
<select name="rating" id="rating" class="block w-full rounded border border-gray-300 p-2">
<option value="Excellent">Excellent</option>
<option value="Good">Good</option>
<option value="Average">Average</option>
<option value="Poor">Poor</option>
</select>
<label for="comments" class="block text-sm font-medium mb-1">Comments</label>
<textarea name="comments" id="comments" 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>Customize before publishing
- Remove fields you do not need and mark only essential answers as required.
- Replace placeholder wording with terms your audience already understands.
- Add your privacy notice, retention details and expected response time.
- Test keyboard focus, validation errors and the confirmation state on mobile.
Use this with Formward
Create a form, copy your endpoint, and replace https://forms.formward.eu/f/your-form-id in the code above.