A11y issue because form field appears to be missing a label. This is due to the structure in the HTML where the input tag is included within the label tag:
Example found:
src/themes/OLH/templates/elements/journal/article_filter_form.html:
<label for="section-{{ section.id }}"><input id="section-{{ section.id }}"
value="{{ section.id }}" type="checkbox"
name="filter[]"
{% if section.id in filters %}checked="checked"{% endif %}>{{ section.name }}
</label>
The label tag should be closed before the input tag opens.
A11y issue because form field appears to be missing a label. This is due to the structure in the HTML where the input tag is included within the label tag:
Example found:
The label tag should be closed before the input tag opens.