cds-snc / node-starter-app

Quick start application setup.... because you have to start somewhere.
MIT License
5 stars 3 forks source link

Fieldset should wrap around legend and associated checkboxes/radios #56

Closed dsamojlenko closed 5 years ago

dsamojlenko commented 5 years ago

The fieldset element around checkboxes and radios was being closed prematurely.

Changes:

<fieldset>
    <legend>...</legend>
</fieldset>
...checkboxes/radios...

To:

<fieldset>
    <legend>...</legend>
    ...checkboxes/radios...
</fieldset>