digitalmarketplace-frontend
Version:
Digital Marketplace Frontend contains assets and components used in Digital Marketplace projects
50 lines (30 loc) • 1.47 kB
HTML
<div class="govuk-form-group govuk-form-group--error">
<fieldset class="govuk-fieldset" aria-describedby="input-example-with-error-error">
<legend class="govuk-fieldset__legend govuk-fieldset__legend--m">
What is your nationality?
</legend>
<p id="input-example-with-error-error" class="govuk-error-message">
<span class="govuk-visually-hidden">Error:</span> Please select at least one option
</p>
<div class="govuk-checkboxes" data-module="govuk-checkboxes">
<div class="govuk-checkboxes__item">
<input class="govuk-checkboxes__input" id="input-example-with-error" name="example-with-error" type="checkbox" value="british">
<label class="govuk-label govuk-checkboxes__label" for="input-example-with-error">
British
</label>
</div>
<div class="govuk-checkboxes__item">
<input class="govuk-checkboxes__input" id="input-example-with-error-2" name="example-with-error" type="checkbox" value="irish">
<label class="govuk-label govuk-checkboxes__label" for="input-example-with-error-2">
Irish
</label>
</div>
<div class="govuk-checkboxes__item">
<input class="govuk-checkboxes__input" id="input-example-with-error-3" name="example-with-error" type="checkbox" value="other">
<label class="govuk-label govuk-checkboxes__label" for="input-example-with-error-3">
Citizen of another country
</label>
</div>
</div>
</fieldset>
</div>