Accompanying Files
Observation Details
Input for choosing country has no visible label
Input for choosing country has accessible name "Search for option"
Remediation Notes
Ensure, adding a visible label that is visible at all times to every input element to clearly and unambiguously identify the purpose of the input element. The Partnernetze input could be structured like this:
<div>
<label for="partnernetze-country">
Wählen sie ein Reiseland
</label>
<p id="partnernetze-country-hint">
Das Land, zu dem Informationen über ...
</p>
<input
id="partnernetze-country"
aria-describedby="partnernetze-country-hint partnernetze-grenze-hint"
...>
<p id="partnernetze-grenze-hint">Wenn sie sich in der Nähe ...</p>
</div>