Course evaluation
Evaluate a course and its instructor.
Fields
Course nametextrequiredInstructortextOverall ratingselectCommentstextarea
Code
<form action="https://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>Use this with Formward
Create a form, copy your endpoint, and replace https://formward.eu/f/your-form-id in the code above.