# ember/template-require-valid-form-groups Require grouped form controls to have appropriate semantics. This rule requires appropriate semantics for grouped form controls. Correctly grouped form controls will take one of two approaches: - use `
` + `` (preferred) - associate controls using WAI-ARIA (also acceptable) ## Examples This rule **forbids** the following: ```gjs ``` This rule **allows** the following: ```gjs ``` ```gjs ``` ## References - [Grouping Controls](https://www.w3.org/WAI/tutorials/forms/grouping/) - [The Field Set element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fieldset)