govuk-frontend
Version:
GOV.UK Frontend contains the code you need to start building a user interface for government platforms and services.
29 lines (28 loc) • 1.19 kB
HTML
<div class="govuk-form-group">
<fieldset class="govuk-fieldset">
<legend class="govuk-fieldset__legend">
How do you want to sign in?
</legend>
<div class="govuk-radios" data-module="govuk-radios">
<div class="govuk-radios__item">
<input class="govuk-radios__input" id="example-divider" name="example" type="radio" value="government-gateway">
<label class="govuk-label govuk-radios__label" for="example-divider">
Use Government Gateway
</label>
</div>
<div class="govuk-radios__item">
<input class="govuk-radios__input" id="example-divider-2" name="example" type="radio" value="govuk-verify">
<label class="govuk-label govuk-radios__label" for="example-divider-2">
Use GOV.UK Verify
</label>
</div>
<div class="govuk-radios__divider">or</div>
<div class="govuk-radios__item">
<input class="govuk-radios__input" id="example-divider-4" name="example" type="radio" value="create-account">
<label class="govuk-label govuk-radios__label" for="example-divider-4">
Create an account
</label>
</div>
</div>
</fieldset>
</div>