Form radio button example
With hint text on radios
How it looks
(preview)
How to call this example
<%= render "govuk_publishing_components/components/radio", {
heading: "How do you want to sign in?",
name: "radio-group-hint-text",
items: [
{
value: "government-gateway",
hint_text: "You'll have a user ID if you've signed up to do things like sign up Self Assessment tax return online.",
text: "Use Government Gateway"
},
{
value: "govuk-verify",
hint_text: "You'll have an account if you've already proved your identity with a certified company, such as the Post Office.",
text: "Use GOV.UK Verify"
}
]
} %>