Context
I built a Contact Form for my website (view in: English/ German / French).
It requires people to input a name, email, subject and message.
The subject can be chosen using a HTML select element:
<select name="subject">
<option>General Inquiry</option>
<option>Cooperation</option>
<option>Press</option>
<option>Education</option>
</select>
Question
Somebody contacted me. He used a subject different from the options I provided.
How is it possible to input / select an option into the form that is not provided as an option?
If we find this out we could also consider some counter-measures to prevent illegal or unexpected options.
Related
- HTML select form with option to enter custom value (link).