Skip to main content

Work in progress

This page is a design preview. It may not contain the latest guidance and may not behave as expected.

Current guidance can always be found at design-system.dwp.gov.uk.

Other needs

HTML

<form class="form">
  <div class="govuk-form-group">
    <fieldset class="govuk-fieldset" aria-describedby="other-help-hint">
      <legend class="govuk-fieldset__legend govuk-fieldset__legend--l">
        <h1 class="govuk-fieldset__heading">
          Do you need any other help when we contact you?
        </h1>
      </legend>
      <div id="other-help-hint" class="govuk-hint">
        This might include another way to write or speak to you, or help with understanding information we send you.
      </div>
      <div class="govuk-radios" data-module="govuk-radios">
        <div class="govuk-radios__item">
          <input class="govuk-radios__input" id="other-help" name="other-help" type="radio" value="yes">
          <label class="govuk-label govuk-radios__label" for="other-help">
            Yes
          </label>
        </div>
        <div class="govuk-radios__item">
          <input class="govuk-radios__input" id="other-help-2" name="other-help" type="radio" value="no">
          <label class="govuk-label govuk-radios__label" for="other-help-2">
            No
          </label>
        </div>
      </div>
    </fieldset>
  </div>
  <button type="submit" class="govuk-button" data-module="govuk-button">
    Continue
  </button>
</form>