Skip to main content
Other needs

Nunjucks

{% from "govuk/components/button/macro.njk" import govukButton %}
{% from "govuk/components/radios/macro.njk" import govukRadios %}

<form class="form">
{{ govukRadios({
name: "other-help",
fieldset: {
legend: {
  text: "Do you need any other help when we contact you?",
  isPageHeading: true,
  classes: "govuk-fieldset__legend--l"
}
},
hint: {
text: "This might include another way to write or speak to you, or help with understanding information we send you."  
},
items: [
{
  value: "yes",  
  text: "Yes"
},
{
  value: "no",
  text: "No"
}
]
}) }}

{{ govukButton({
text: "Continue"
}) }}
</form>