digitalmarketplace-frontend
Version:
Digital Marketplace Frontend contains assets and components used in Digital Marketplace projects
40 lines (24 loc) • 1.12 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">
Have you changed your name?
</legend>
<p id="input-example-with-error-error" class="govuk-error-message">
<span class="govuk-visually-hidden">Error:</span> Please select an option
</p>
<div class="govuk-radios" data-module="govuk-radios">
<div class="govuk-radios__item">
<input class="govuk-radios__input" id="input-example-with-error" name="example-with-error" type="radio" value="true">
<label class="govuk-label govuk-radios__label" for="input-example-with-error">
Yes
</label>
</div>
<div class="govuk-radios__item">
<input class="govuk-radios__input" id="input-example-with-error-2" name="example-with-error" type="radio" value="false">
<label class="govuk-label govuk-radios__label" for="input-example-with-error-2">
No
</label>
</div>
</div>
</fieldset>
</div>