digitalmarketplace-frontend
Version:
Digital Marketplace Frontend contains assets and components used in Digital Marketplace projects
37 lines (21 loc) • 906 B
HTML
<div class="govuk-form-group">
<fieldset class="govuk-fieldset">
<legend class="govuk-fieldset__legend govuk-fieldset__legend--m">
Have you changed your name?
</legend>
<div class="govuk-radios" data-module="govuk-radios">
<div class="govuk-radios__item">
<input class="govuk-radios__input" id="input-example-with-checked-itemd" name="example-with-checked-itemd" type="radio" value="true">
<label class="govuk-label govuk-radios__label" for="input-example-with-checked-itemd">
Yes
</label>
</div>
<div class="govuk-radios__item">
<input class="govuk-radios__input" id="input-example-with-checked-itemd-2" name="example-with-checked-itemd" type="radio" value="false" checked>
<label class="govuk-label govuk-radios__label" for="input-example-with-checked-itemd-2">
No
</label>
</div>
</div>
</fieldset>
</div>