Components

Text input

<div class="govuk-form-group">
  <h1 class="govuk-label-wrapper"><label class="govuk-label govuk-label--l" for="event-name">
      What is the name of the event?
    </label>
  </h1>
  <input class="govuk-input" id="event-name" name="event-name" type="text">
</div>
Nunjucks macro options

Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.

Some options are required for the macro to work; these are marked as "Required" in the option description.

If you're using Nunjucks macros in production with "html" options, or ones ending with "html", you must sanitise the HTML to protect against cross-site scripting exploits.

Primary options
Name Type Description
id string Required. The id of the input.
name string Required. The name of the input, which is submitted with the form data.
type string Type of input control to render. Defaults to "text".
inputmode string Optional value for inputmode.
value string Optional initial value of the input.
describedBy string One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
label object Required. Options for the label component. See label.
hint object Options for the hint component. See hint.
errorMessage object Options for the error message component. The error message component will not display if you use a falsy value for errorMessage, for example false or null. See errorMessage.
prefix object Options for the prefix element. See prefix.
suffix object Options for the suffix element. See suffix.
formGroup object Options for the form-group wrapper See formGroup.
classes string Classes to add to the input.
autocomplete string Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
pattern string Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
spellcheck boolean Optional field to enable or disable the spellcheck attribute on the input.
attributes object HTML attributes (for example data attributes) to add to the anchor tag.
Options for prefix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the prefix.
attributes object HTML attributes (for example data attributes) to add to the prefix element.
Options for suffix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the suffix element.
attributes object HTML attributes (for example data attributes) to add to the suffix element.
Options for formGroup
Name Type Description
classes string Classes to add to the form group (e.g. to show error state for the whole group)
Options for label
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the label. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the label. If `html` is provided, the `text` argument will be ignored.
for string The value of the for attribute, the id of the input the label is associated with.
isPageHeading boolean Whether the label also acts as the heading for the page.
classes string Classes to add to the label tag.
attributes object HTML attributes (for example data attributes) to add to the label tag.
Options for hint
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the hint. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the hint. If `html` is provided, the `text` argument will be ignored.
id string Optional id attribute to add to the hint span tag.
classes string Classes to add to the hint span tag.
attributes object HTML attributes (for example data attributes) to add to the hint span tag.
{% from "govuk/components/input/macro.njk" import govukInput %}

{{ govukInput({
  label: {
    text: "What is the name of the event?",
    classes: "govuk-label--l",
    isPageHeading: true
  },
  id: "event-name",
  name: "event-name"
}) }}

When to use this component

Use the text input component when you need to let users enter text that’s no longer than a single line, such as their name or phone number.

When not to use this component

Do not use the text input component if you need to let users enter longer answers that might span multiple lines. In this case, you should use the textarea component.

How it works

There are 2 ways to use the text input component. You can use HTML or, if you’re using Nunjucks or the GOV.UK Prototype Kit, you can use the Nunjucks macro.

<div class="govuk-form-group">
  <h1 class="govuk-label-wrapper"><label class="govuk-label govuk-label--l" for="event-name">
      What is the name of the event?
    </label>
  </h1>
  <input class="govuk-input" id="event-name" name="event-name" type="text">
</div>
Nunjucks macro options

Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.

Some options are required for the macro to work; these are marked as "Required" in the option description.

If you're using Nunjucks macros in production with "html" options, or ones ending with "html", you must sanitise the HTML to protect against cross-site scripting exploits.

Primary options
Name Type Description
id string Required. The id of the input.
name string Required. The name of the input, which is submitted with the form data.
type string Type of input control to render. Defaults to "text".
inputmode string Optional value for inputmode.
value string Optional initial value of the input.
describedBy string One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
label object Required. Options for the label component. See label.
hint object Options for the hint component. See hint.
errorMessage object Options for the error message component. The error message component will not display if you use a falsy value for errorMessage, for example false or null. See errorMessage.
prefix object Options for the prefix element. See prefix.
suffix object Options for the suffix element. See suffix.
formGroup object Options for the form-group wrapper See formGroup.
classes string Classes to add to the input.
autocomplete string Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
pattern string Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
spellcheck boolean Optional field to enable or disable the spellcheck attribute on the input.
attributes object HTML attributes (for example data attributes) to add to the anchor tag.
Options for prefix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the prefix.
attributes object HTML attributes (for example data attributes) to add to the prefix element.
Options for suffix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the suffix element.
attributes object HTML attributes (for example data attributes) to add to the suffix element.
Options for formGroup
Name Type Description
classes string Classes to add to the form group (e.g. to show error state for the whole group)
Options for label
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the label. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the label. If `html` is provided, the `text` argument will be ignored.
for string The value of the for attribute, the id of the input the label is associated with.
isPageHeading boolean Whether the label also acts as the heading for the page.
classes string Classes to add to the label tag.
attributes object HTML attributes (for example data attributes) to add to the label tag.
Options for hint
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the hint. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the hint. If `html` is provided, the `text` argument will be ignored.
id string Optional id attribute to add to the hint span tag.
classes string Classes to add to the hint span tag.
attributes object HTML attributes (for example data attributes) to add to the hint span tag.
{% from "govuk/components/input/macro.njk" import govukInput %}

{{ govukInput({
  label: {
    text: "What is the name of the event?",
    classes: "govuk-label--l",
    isPageHeading: true
  },
  id: "event-name",
  name: "event-name"
}) }}

Label text inputs

All text inputs must have visible labels; placeholder text is not an acceptable replacement for a label as it vanishes when users start typing.

Labels should be aligned above the text input they refer to. They should be short, direct and written in sentence case. Do not use colons at the end of labels.

If you’re asking just one question per page as recommended, you can set the contents of the <label> as the page heading. This is good practice as it means that users of screen readers will only hear the contents once.

Read more about why and how to set legends as headings.

Use appropriately-sized text inputs

Help users understand what they should enter by making text inputs the right size for the content they’re intended for.

By default, the width of text inputs is fluid and will fit the full width of the container they are placed into.

If you want to make the input smaller, you can either use a fixed width input, or use the width override classes to create a smaller, fluid width input.

Fixed width inputs

Use fixed width inputs for content that has a specific, known length. Postcode inputs should be postcode-sized, telephone number inputs should be telephone number-sized.

On fixed width inputs, the width will remain fixed on all screens unless it is wider than the viewport, in which case it will shrink to fit.

<div class="govuk-form-group">
  <label class="govuk-label" for="width-20">
    20 character width
  </label>
  <input class="govuk-input govuk-input--width-20" id="width-20" name="width-20" type="text"></div>

<div class="govuk-form-group">
  <label class="govuk-label" for="width-10">
    10 character width
  </label>
  <input class="govuk-input govuk-input--width-10" id="width-10" name="width-10" type="text"></div>

<div class="govuk-form-group">
  <label class="govuk-label" for="width-5">
    5 character width
  </label>
  <input class="govuk-input govuk-input--width-5" id="width-5" name="width-5" type="text"></div>

<div class="govuk-form-group">
  <label class="govuk-label" for="width-4">
    4 character width
  </label>
  <input class="govuk-input govuk-input--width-4" id="width-4" name="width-4" type="text"></div>

<div class="govuk-form-group">
  <label class="govuk-label" for="width-3">
    3 character width
  </label>
  <input class="govuk-input govuk-input--width-3" id="width-3" name="width-3" type="text"></div>

<div class="govuk-form-group">
  <label class="govuk-label" for="width-2">
    2 character width
  </label>
  <input class="govuk-input govuk-input--width-2" id="width-2" name="width-2" type="text"></div>
Nunjucks macro options

Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.

Some options are required for the macro to work; these are marked as "Required" in the option description.

If you're using Nunjucks macros in production with "html" options, or ones ending with "html", you must sanitise the HTML to protect against cross-site scripting exploits.

Primary options
Name Type Description
id string Required. The id of the input.
name string Required. The name of the input, which is submitted with the form data.
type string Type of input control to render. Defaults to "text".
inputmode string Optional value for inputmode.
value string Optional initial value of the input.
describedBy string One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
label object Required. Options for the label component. See label.
hint object Options for the hint component. See hint.
errorMessage object Options for the error message component. The error message component will not display if you use a falsy value for errorMessage, for example false or null. See errorMessage.
prefix object Options for the prefix element. See prefix.
suffix object Options for the suffix element. See suffix.
formGroup object Options for the form-group wrapper See formGroup.
classes string Classes to add to the input.
autocomplete string Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
pattern string Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
spellcheck boolean Optional field to enable or disable the spellcheck attribute on the input.
attributes object HTML attributes (for example data attributes) to add to the anchor tag.
Options for prefix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the prefix.
attributes object HTML attributes (for example data attributes) to add to the prefix element.
Options for suffix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the suffix element.
attributes object HTML attributes (for example data attributes) to add to the suffix element.
Options for formGroup
Name Type Description
classes string Classes to add to the form group (e.g. to show error state for the whole group)
Options for label
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the label. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the label. If `html` is provided, the `text` argument will be ignored.
for string The value of the for attribute, the id of the input the label is associated with.
isPageHeading boolean Whether the label also acts as the heading for the page.
classes string Classes to add to the label tag.
attributes object HTML attributes (for example data attributes) to add to the label tag.
Options for hint
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the hint. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the hint. If `html` is provided, the `text` argument will be ignored.
id string Optional id attribute to add to the hint span tag.
classes string Classes to add to the hint span tag.
attributes object HTML attributes (for example data attributes) to add to the hint span tag.
{% from "govuk/components/input/macro.njk" import govukInput %}

{{ govukInput({
  label: {
    text: "20 character width"
  },
  classes: "govuk-input--width-20",
  id: "width-20",
  name: "width-20"
}) }}

{{ govukInput({
  label: {
    text: "10 character width"
  },
  classes: "govuk-input--width-10",
  id: "width-10",
  name: "width-10"
}) }}

{{ govukInput({
  label: {
    text: "5 character width"
  },
  classes: "govuk-input--width-5",
  id: "width-5",
  name: "width-5"
}) }}

{{ govukInput({
  label: {
    text: "4 character width"
  },
  classes: "govuk-input--width-4",
  id: "width-4",
  name: "width-4"
}) }}

{{ govukInput({
  label: {
    text: "3 character width"
  },
  classes: "govuk-input--width-3",
  id: "width-3",
  name: "width-3"
}) }}

{{ govukInput({
  label: {
    text: "2 character width"
  },
  classes: "govuk-input--width-2",
  id: "width-2",
  name: "width-2"
}) }}

Fluid width inputs

Use the width override classes to reduce the width of an input in relation to its parent container, for example, to two-thirds.

Fluid width inputs will resize with the viewport.

<div class="govuk-form-group">
  <label class="govuk-label" for="full">
    Full width
  </label>
  <input class="govuk-input govuk-!-width-full" id="full" name="full" type="text"></div>

<div class="govuk-form-group">
  <label class="govuk-label" for="three-quarters">
    Three-quarters width
  </label>
  <input class="govuk-input govuk-!-width-three-quarters" id="three-quarters" name="three-quarters" type="text"></div>

<div class="govuk-form-group">
  <label class="govuk-label" for="two-thirds">
    Two-thirds width
  </label>
  <input class="govuk-input govuk-!-width-two-thirds" id="two-thirds" name="two-thirds" type="text"></div>

<div class="govuk-form-group">
  <label class="govuk-label" for="one-half">
    One-half width
  </label>
  <input class="govuk-input govuk-!-width-one-half" id="one-half" name="one-half" type="text"></div>

<div class="govuk-form-group">
  <label class="govuk-label" for="one-third">
    One-third width
  </label>
  <input class="govuk-input govuk-!-width-one-third" id="one-third" name="one-third" type="text"></div>

<div class="govuk-form-group">
  <label class="govuk-label" for="one-quarter">
    One-quarter width
  </label>
  <input class="govuk-input govuk-!-width-one-quarter" id="one-quarter" name="one-quarter" type="text"></div>
Nunjucks macro options

Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.

Some options are required for the macro to work; these are marked as "Required" in the option description.

If you're using Nunjucks macros in production with "html" options, or ones ending with "html", you must sanitise the HTML to protect against cross-site scripting exploits.

Primary options
Name Type Description
id string Required. The id of the input.
name string Required. The name of the input, which is submitted with the form data.
type string Type of input control to render. Defaults to "text".
inputmode string Optional value for inputmode.
value string Optional initial value of the input.
describedBy string One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
label object Required. Options for the label component. See label.
hint object Options for the hint component. See hint.
errorMessage object Options for the error message component. The error message component will not display if you use a falsy value for errorMessage, for example false or null. See errorMessage.
prefix object Options for the prefix element. See prefix.
suffix object Options for the suffix element. See suffix.
formGroup object Options for the form-group wrapper See formGroup.
classes string Classes to add to the input.
autocomplete string Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
pattern string Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
spellcheck boolean Optional field to enable or disable the spellcheck attribute on the input.
attributes object HTML attributes (for example data attributes) to add to the anchor tag.
Options for prefix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the prefix.
attributes object HTML attributes (for example data attributes) to add to the prefix element.
Options for suffix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the suffix element.
attributes object HTML attributes (for example data attributes) to add to the suffix element.
Options for formGroup
Name Type Description
classes string Classes to add to the form group (e.g. to show error state for the whole group)
Options for label
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the label. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the label. If `html` is provided, the `text` argument will be ignored.
for string The value of the for attribute, the id of the input the label is associated with.
isPageHeading boolean Whether the label also acts as the heading for the page.
classes string Classes to add to the label tag.
attributes object HTML attributes (for example data attributes) to add to the label tag.
Options for hint
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the hint. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the hint. If `html` is provided, the `text` argument will be ignored.
id string Optional id attribute to add to the hint span tag.
classes string Classes to add to the hint span tag.
attributes object HTML attributes (for example data attributes) to add to the hint span tag.
{% from "govuk/components/input/macro.njk" import govukInput %}

{{ govukInput({
  label: {
    text: "Full width"
  },
  classes: "govuk-!-width-full",
  id: "full",
  name: "full"
}) }}

{{ govukInput({
  label: {
    text: "Three-quarters width"
  },
  classes: "govuk-!-width-three-quarters",
  id: "three-quarters",
  name: "three-quarters"
}) }}

{{ govukInput({
  label: {
    text: "Two-thirds width"
  },
  classes: "govuk-!-width-two-thirds",
  id: "two-thirds",
  name: "two-thirds"
}) }}

{{ govukInput({
  label: {
    text: "One-half width"
  },
  classes: "govuk-!-width-one-half",
  id: "one-half",
  name: "one-half"
}) }}

{{ govukInput({
  label: {
    text: "One-third width"
  },
  classes: "govuk-!-width-one-third",
  id: "one-third",
  name: "one-third"
}) }}

{{ govukInput({
  label: {
    text: "One-quarter width"
  },
  classes: "govuk-!-width-one-quarter",
  id: "one-quarter",
  name: "one-quarter"
}) }}

Hint text

Use hint for help that’s relevant to the majority of users, like how their information will be used, or where to find it.

<div class="govuk-form-group">
  <h1 class="govuk-label-wrapper"><label class="govuk-label govuk-label--l" for="event-name">
      What is the name of the event?
    </label>
  </h1>
  <div id="event-name-hint" class="govuk-hint">
    The name you’ll use on promotional material.
  </div>
  <input class="govuk-input" id="event-name" name="event-name" type="text" aria-describedby="event-name-hint">
</div>
Nunjucks macro options

Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.

Some options are required for the macro to work; these are marked as "Required" in the option description.

If you're using Nunjucks macros in production with "html" options, or ones ending with "html", you must sanitise the HTML to protect against cross-site scripting exploits.

Primary options
Name Type Description
id string Required. The id of the input.
name string Required. The name of the input, which is submitted with the form data.
type string Type of input control to render. Defaults to "text".
inputmode string Optional value for inputmode.
value string Optional initial value of the input.
describedBy string One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
label object Required. Options for the label component. See label.
hint object Options for the hint component. See hint.
errorMessage object Options for the error message component. The error message component will not display if you use a falsy value for errorMessage, for example false or null. See errorMessage.
prefix object Options for the prefix element. See prefix.
suffix object Options for the suffix element. See suffix.
formGroup object Options for the form-group wrapper See formGroup.
classes string Classes to add to the input.
autocomplete string Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
pattern string Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
spellcheck boolean Optional field to enable or disable the spellcheck attribute on the input.
attributes object HTML attributes (for example data attributes) to add to the anchor tag.
Options for prefix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the prefix.
attributes object HTML attributes (for example data attributes) to add to the prefix element.
Options for suffix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the suffix element.
attributes object HTML attributes (for example data attributes) to add to the suffix element.
Options for formGroup
Name Type Description
classes string Classes to add to the form group (e.g. to show error state for the whole group)
Options for label
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the label. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the label. If `html` is provided, the `text` argument will be ignored.
for string The value of the for attribute, the id of the input the label is associated with.
isPageHeading boolean Whether the label also acts as the heading for the page.
classes string Classes to add to the label tag.
attributes object HTML attributes (for example data attributes) to add to the label tag.
Options for hint
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the hint. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the hint. If `html` is provided, the `text` argument will be ignored.
id string Optional id attribute to add to the hint span tag.
classes string Classes to add to the hint span tag.
attributes object HTML attributes (for example data attributes) to add to the hint span tag.
{% from "govuk/components/input/macro.njk" import govukInput %}

{{ govukInput({
  label: {
    text: "What is the name of the event?",
    classes: "govuk-label--l",
    isPageHeading: true
  },
  hint: {
    text: "The name you’ll use on promotional material."
  },
  id: "event-name",
  name: "event-name"
}) }}

Numbers

Asking for whole numbers

If you’re asking the user to enter a whole number and you want to bring up the numeric keypad on a mobile device, set the inputmode attribute to numeric and the pattern attribute to [0-9]*. See how to do this in the HTML and Nunjucks tabs in the following example.

<div class="govuk-form-group">
  <h1 class="govuk-label-wrapper"><label class="govuk-label govuk-label--l" for="account-number">
      What is your account number?
    </label>
  </h1>
  <div id="account-number-hint" class="govuk-hint">
    Must be between 6 and 8 digits long
  </div>
  <input class="govuk-input govuk-input--width-10" id="account-number" name="account-number" type="text" spellcheck="false" aria-describedby="account-number-hint" pattern="[0-9]*" inputmode="numeric">
</div>
Nunjucks macro options

Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.

Some options are required for the macro to work; these are marked as "Required" in the option description.

If you're using Nunjucks macros in production with "html" options, or ones ending with "html", you must sanitise the HTML to protect against cross-site scripting exploits.

Primary options
Name Type Description
id string Required. The id of the input.
name string Required. The name of the input, which is submitted with the form data.
type string Type of input control to render. Defaults to "text".
inputmode string Optional value for inputmode.
value string Optional initial value of the input.
describedBy string One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
label object Required. Options for the label component. See label.
hint object Options for the hint component. See hint.
errorMessage object Options for the error message component. The error message component will not display if you use a falsy value for errorMessage, for example false or null. See errorMessage.
prefix object Options for the prefix element. See prefix.
suffix object Options for the suffix element. See suffix.
formGroup object Options for the form-group wrapper See formGroup.
classes string Classes to add to the input.
autocomplete string Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
pattern string Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
spellcheck boolean Optional field to enable or disable the spellcheck attribute on the input.
attributes object HTML attributes (for example data attributes) to add to the anchor tag.
Options for prefix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the prefix.
attributes object HTML attributes (for example data attributes) to add to the prefix element.
Options for suffix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the suffix element.
attributes object HTML attributes (for example data attributes) to add to the suffix element.
Options for formGroup
Name Type Description
classes string Classes to add to the form group (e.g. to show error state for the whole group)
Options for label
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the label. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the label. If `html` is provided, the `text` argument will be ignored.
for string The value of the for attribute, the id of the input the label is associated with.
isPageHeading boolean Whether the label also acts as the heading for the page.
classes string Classes to add to the label tag.
attributes object HTML attributes (for example data attributes) to add to the label tag.
Options for hint
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the hint. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the hint. If `html` is provided, the `text` argument will be ignored.
id string Optional id attribute to add to the hint span tag.
classes string Classes to add to the hint span tag.
attributes object HTML attributes (for example data attributes) to add to the hint span tag.
{% from "govuk/components/input/macro.njk" import govukInput %}

{{ govukInput({
  label: {
    text: "What is your account number?",
    classes: "govuk-label--l",
    isPageHeading: true
  },
  classes: "govuk-input--width-10",
  hint: {
    text: "Must be between 6 and 8 digits long"
  },
  id: "account-number",
  name: "account-number",
  inputmode: "numeric",
  pattern: "[0-9]*",
  spellcheck: false
}) }}

You should also turn off HTML5 validation to prevent browsers from validating the pattern attribute.

There is specific guidance on how to ask for:

Asking for decimal numbers

If you’re asking the user to enter a number that might include decimal places, use input type="text" without inputmode or pattern attributes.

Do not set the inputmode attribute to decimal as it causes some devices to bring up a keypad without a key for the decimal separator.

<div class="govuk-form-group">
  <label class="govuk-label" for="weight">
    Weight, in kilograms
  </label>
  <div class="govuk-input__wrapper"><input class="govuk-input govuk-input--width-5" id="weight" name="weight" type="text" spellcheck="false">
    <div class="govuk-input__suffix" aria-hidden="true">kg</div>
  </div>
</div>
Nunjucks macro options

Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.

Some options are required for the macro to work; these are marked as "Required" in the option description.

If you're using Nunjucks macros in production with "html" options, or ones ending with "html", you must sanitise the HTML to protect against cross-site scripting exploits.

Primary options
Name Type Description
id string Required. The id of the input.
name string Required. The name of the input, which is submitted with the form data.
type string Type of input control to render. Defaults to "text".
inputmode string Optional value for inputmode.
value string Optional initial value of the input.
describedBy string One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
label object Required. Options for the label component. See label.
hint object Options for the hint component. See hint.
errorMessage object Options for the error message component. The error message component will not display if you use a falsy value for errorMessage, for example false or null. See errorMessage.
prefix object Options for the prefix element. See prefix.
suffix object Options for the suffix element. See suffix.
formGroup object Options for the form-group wrapper See formGroup.
classes string Classes to add to the input.
autocomplete string Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
pattern string Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
spellcheck boolean Optional field to enable or disable the spellcheck attribute on the input.
attributes object HTML attributes (for example data attributes) to add to the anchor tag.
Options for prefix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the prefix.
attributes object HTML attributes (for example data attributes) to add to the prefix element.
Options for suffix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the suffix element.
attributes object HTML attributes (for example data attributes) to add to the suffix element.
Options for formGroup
Name Type Description
classes string Classes to add to the form group (e.g. to show error state for the whole group)
Options for label
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the label. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the label. If `html` is provided, the `text` argument will be ignored.
for string The value of the for attribute, the id of the input the label is associated with.
isPageHeading boolean Whether the label also acts as the heading for the page.
classes string Classes to add to the label tag.
attributes object HTML attributes (for example data attributes) to add to the label tag.
Options for hint
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the hint. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the hint. If `html` is provided, the `text` argument will be ignored.
id string Optional id attribute to add to the hint span tag.
classes string Classes to add to the hint span tag.
attributes object HTML attributes (for example data attributes) to add to the hint span tag.
{% from "govuk/components/input/macro.njk" import govukInput %}

{{ govukInput({
  label: {
    text: "Weight, in kilograms"
  },
  classes: "govuk-input--width-5",
  id: "weight",
  name: "weight",
  suffix: {
    text: "kg"
  },
  spellcheck: false
}) }}

Avoid using inputs with a type of number

Do not use <input type="number"> unless your user research shows that there’s a need for it. With <input type="number"> there’s a risk of users accidentally incrementing a number when they’re trying to do something else - for example, scroll up or down the page. And if the user tries to enter something that’s not a number, there’s no explicit feedback about what they’re doing wrong.

Prefixes and suffixes

Use prefixes and suffixes to help users enter things like currencies and measurements.

<div class="govuk-form-group">
  <h1 class="govuk-label-wrapper"><label class="govuk-label govuk-label--l" for="cost-per-item">
      What is the cost per item, in pounds?
    </label>
  </h1>
  <div class="govuk-input__wrapper">
    <div class="govuk-input__prefix" aria-hidden="true">£</div>
    <input class="govuk-input govuk-input--width-5" id="cost-per-item" name="cost-per-item" type="text" spellcheck="false">
    <div class="govuk-input__suffix" aria-hidden="true">per item</div>
  </div>
</div>
Nunjucks macro options

Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.

Some options are required for the macro to work; these are marked as "Required" in the option description.

If you're using Nunjucks macros in production with "html" options, or ones ending with "html", you must sanitise the HTML to protect against cross-site scripting exploits.

Primary options
Name Type Description
id string Required. The id of the input.
name string Required. The name of the input, which is submitted with the form data.
type string Type of input control to render. Defaults to "text".
inputmode string Optional value for inputmode.
value string Optional initial value of the input.
describedBy string One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
label object Required. Options for the label component. See label.
hint object Options for the hint component. See hint.
errorMessage object Options for the error message component. The error message component will not display if you use a falsy value for errorMessage, for example false or null. See errorMessage.
prefix object Options for the prefix element. See prefix.
suffix object Options for the suffix element. See suffix.
formGroup object Options for the form-group wrapper See formGroup.
classes string Classes to add to the input.
autocomplete string Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
pattern string Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
spellcheck boolean Optional field to enable or disable the spellcheck attribute on the input.
attributes object HTML attributes (for example data attributes) to add to the anchor tag.
Options for prefix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the prefix.
attributes object HTML attributes (for example data attributes) to add to the prefix element.
Options for suffix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the suffix element.
attributes object HTML attributes (for example data attributes) to add to the suffix element.
Options for formGroup
Name Type Description
classes string Classes to add to the form group (e.g. to show error state for the whole group)
Options for label
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the label. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the label. If `html` is provided, the `text` argument will be ignored.
for string The value of the for attribute, the id of the input the label is associated with.
isPageHeading boolean Whether the label also acts as the heading for the page.
classes string Classes to add to the label tag.
attributes object HTML attributes (for example data attributes) to add to the label tag.
Options for hint
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the hint. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the hint. If `html` is provided, the `text` argument will be ignored.
id string Optional id attribute to add to the hint span tag.
classes string Classes to add to the hint span tag.
attributes object HTML attributes (for example data attributes) to add to the hint span tag.
{% from "govuk/components/input/macro.njk" import govukInput %}

{{ govukInput({
  id: "cost-per-item",
  name: "cost-per-item",
  label: {
    text: "What is the cost per item, in pounds?",
    classes: "govuk-label--l",
    isPageHeading: true
  },
  prefix: {
    text: "£"
  },
  suffix: {
    text: "per item"
  },
  classes: "govuk-input--width-5",
  spellcheck: false
}) }}

Prefixes and suffixes are useful when there’s a commonly understood symbol or abbreviation for the type of information you’re asking for. Do not rely on prefixes or suffixes alone, because people who use a screen reader won’t see them.

If you need a specific type of information, say so in the input label or hint text as well. For example, put “Cost, in pounds” in the input label and use the “£” symbol in the prefix.

Some users may miss the fact that the input already has a suffix or prefix, and enter a prefix or suffix into the input. Allow for this in your validation and do not show an error.

Text inputs with a prefix

<div class="govuk-form-group">
  <h1 class="govuk-label-wrapper"><label class="govuk-label govuk-label--l" for="cost">
      What is the cost in pounds?
    </label>
  </h1>
  <div class="govuk-input__wrapper">
    <div class="govuk-input__prefix" aria-hidden="true">£</div>
    <input class="govuk-input govuk-input--width-5" id="cost" name="cost" type="text" spellcheck="false">
  </div>
</div>
Nunjucks macro options

Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.

Some options are required for the macro to work; these are marked as "Required" in the option description.

If you're using Nunjucks macros in production with "html" options, or ones ending with "html", you must sanitise the HTML to protect against cross-site scripting exploits.

Primary options
Name Type Description
id string Required. The id of the input.
name string Required. The name of the input, which is submitted with the form data.
type string Type of input control to render. Defaults to "text".
inputmode string Optional value for inputmode.
value string Optional initial value of the input.
describedBy string One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
label object Required. Options for the label component. See label.
hint object Options for the hint component. See hint.
errorMessage object Options for the error message component. The error message component will not display if you use a falsy value for errorMessage, for example false or null. See errorMessage.
prefix object Options for the prefix element. See prefix.
suffix object Options for the suffix element. See suffix.
formGroup object Options for the form-group wrapper See formGroup.
classes string Classes to add to the input.
autocomplete string Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
pattern string Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
spellcheck boolean Optional field to enable or disable the spellcheck attribute on the input.
attributes object HTML attributes (for example data attributes) to add to the anchor tag.
Options for prefix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the prefix.
attributes object HTML attributes (for example data attributes) to add to the prefix element.
Options for suffix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the suffix element.
attributes object HTML attributes (for example data attributes) to add to the suffix element.
Options for formGroup
Name Type Description
classes string Classes to add to the form group (e.g. to show error state for the whole group)
Options for label
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the label. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the label. If `html` is provided, the `text` argument will be ignored.
for string The value of the for attribute, the id of the input the label is associated with.
isPageHeading boolean Whether the label also acts as the heading for the page.
classes string Classes to add to the label tag.
attributes object HTML attributes (for example data attributes) to add to the label tag.
Options for hint
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the hint. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the hint. If `html` is provided, the `text` argument will be ignored.
id string Optional id attribute to add to the hint span tag.
classes string Classes to add to the hint span tag.
attributes object HTML attributes (for example data attributes) to add to the hint span tag.
{% from "govuk/components/input/macro.njk" import govukInput %}

{{ govukInput({
  id: "cost",
  name: "cost",
  label: {
    text: "What is the cost in pounds?",
    classes: "govuk-label--l",
    isPageHeading: true
  },
  prefix: {
    text: "£"
  },
  classes: "govuk-input--width-5",
  spellcheck: false
}) }}

Text inputs with a suffix

<div class="govuk-form-group">
  <h1 class="govuk-label-wrapper"><label class="govuk-label govuk-label--l" for="weight">
      What is the weight in kilograms?
    </label>
  </h1>
  <div class="govuk-input__wrapper"><input class="govuk-input govuk-input--width-5" id="weight" name="weight" type="text" spellcheck="false">
    <div class="govuk-input__suffix" aria-hidden="true">kg</div>
  </div>
</div>
Nunjucks macro options

Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.

Some options are required for the macro to work; these are marked as "Required" in the option description.

If you're using Nunjucks macros in production with "html" options, or ones ending with "html", you must sanitise the HTML to protect against cross-site scripting exploits.

Primary options
Name Type Description
id string Required. The id of the input.
name string Required. The name of the input, which is submitted with the form data.
type string Type of input control to render. Defaults to "text".
inputmode string Optional value for inputmode.
value string Optional initial value of the input.
describedBy string One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
label object Required. Options for the label component. See label.
hint object Options for the hint component. See hint.
errorMessage object Options for the error message component. The error message component will not display if you use a falsy value for errorMessage, for example false or null. See errorMessage.
prefix object Options for the prefix element. See prefix.
suffix object Options for the suffix element. See suffix.
formGroup object Options for the form-group wrapper See formGroup.
classes string Classes to add to the input.
autocomplete string Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
pattern string Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
spellcheck boolean Optional field to enable or disable the spellcheck attribute on the input.
attributes object HTML attributes (for example data attributes) to add to the anchor tag.
Options for prefix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the prefix.
attributes object HTML attributes (for example data attributes) to add to the prefix element.
Options for suffix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the suffix element.
attributes object HTML attributes (for example data attributes) to add to the suffix element.
Options for formGroup
Name Type Description
classes string Classes to add to the form group (e.g. to show error state for the whole group)
Options for label
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the label. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the label. If `html` is provided, the `text` argument will be ignored.
for string The value of the for attribute, the id of the input the label is associated with.
isPageHeading boolean Whether the label also acts as the heading for the page.
classes string Classes to add to the label tag.
attributes object HTML attributes (for example data attributes) to add to the label tag.
Options for hint
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the hint. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the hint. If `html` is provided, the `text` argument will be ignored.
id string Optional id attribute to add to the hint span tag.
classes string Classes to add to the hint span tag.
attributes object HTML attributes (for example data attributes) to add to the hint span tag.
{% from "govuk/components/input/macro.njk" import govukInput %}

{{ govukInput({
  id: "weight",
  name: "weight",
  label: {
    text: "What is the weight in kilograms?",
    classes: "govuk-label--l",
    isPageHeading: true
  },
  suffix: {
    text: "kg"
  },
  classes: "govuk-input--width-5",
  spellcheck: false
}) }}

Use the autocomplete attribute

Use the autocomplete attribute on text inputs to help users complete forms more quickly. This lets you specify an input’s purpose so browsers can autofill the information on a user’s behalf if they’ve entered it previously.

For example, to enable autofill on a postcode field, set the autocomplete attribute to postal-code. See how to do this in the HTML and Nunjucks tabs in the following example.

<div class="govuk-form-group">
  <label class="govuk-label" for="postcode">
    Postcode
  </label>
  <input class="govuk-input govuk-input--width-10" id="postcode" name="postcode" type="text" autocomplete="postal-code"></div>
Nunjucks macro options

Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.

Some options are required for the macro to work; these are marked as "Required" in the option description.

If you're using Nunjucks macros in production with "html" options, or ones ending with "html", you must sanitise the HTML to protect against cross-site scripting exploits.

Primary options
Name Type Description
id string Required. The id of the input.
name string Required. The name of the input, which is submitted with the form data.
type string Type of input control to render. Defaults to "text".
inputmode string Optional value for inputmode.
value string Optional initial value of the input.
describedBy string One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
label object Required. Options for the label component. See label.
hint object Options for the hint component. See hint.
errorMessage object Options for the error message component. The error message component will not display if you use a falsy value for errorMessage, for example false or null. See errorMessage.
prefix object Options for the prefix element. See prefix.
suffix object Options for the suffix element. See suffix.
formGroup object Options for the form-group wrapper See formGroup.
classes string Classes to add to the input.
autocomplete string Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
pattern string Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
spellcheck boolean Optional field to enable or disable the spellcheck attribute on the input.
attributes object HTML attributes (for example data attributes) to add to the anchor tag.
Options for prefix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the prefix.
attributes object HTML attributes (for example data attributes) to add to the prefix element.
Options for suffix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the suffix element.
attributes object HTML attributes (for example data attributes) to add to the suffix element.
Options for formGroup
Name Type Description
classes string Classes to add to the form group (e.g. to show error state for the whole group)
Options for label
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the label. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the label. If `html` is provided, the `text` argument will be ignored.
for string The value of the for attribute, the id of the input the label is associated with.
isPageHeading boolean Whether the label also acts as the heading for the page.
classes string Classes to add to the label tag.
attributes object HTML attributes (for example data attributes) to add to the label tag.
Options for hint
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the hint. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the hint. If `html` is provided, the `text` argument will be ignored.
id string Optional id attribute to add to the hint span tag.
classes string Classes to add to the hint span tag.
attributes object HTML attributes (for example data attributes) to add to the hint span tag.
{% from "govuk/components/input/macro.njk" import govukInput %}

{{ govukInput({
  label: {
    text: "Postcode"
  },
  classes: "govuk-input--width-10",
  id: "postcode",
  name: "postcode",
  autocomplete: "postal-code"
}) }}

If you are working in production and there is a relevant input purpose, you’ll need to use the autocomplete attribute to meet WCAG 2.1 Level AA.

You will not normally need to use the autocomplete attribute in prototypes, as users will not generally be using their own devices.

Do not disable copy and paste

Users often need to copy and paste information into a text input, so do not stop them from doing this.

How and when to spellcheck a user’s input

Sometimes, browsers will spellcheck the information a user puts into a text input. If a user enters something which is recognised as a spelling error, sighted users will see a red line under the word.

If you are asking users for information which is not appropriate to spellcheck, like a reference number, name, email address or National Insurance number, disable the spellcheck.

To do this set the spellcheck attribute to false as shown in this example.

<div class="govuk-form-group">
  <label class="govuk-label" for="name">
    Reference number
  </label>
  <input class="govuk-input" id="name" name="name" type="text" spellcheck="false"></div>
Nunjucks macro options

Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.

Some options are required for the macro to work; these are marked as "Required" in the option description.

If you're using Nunjucks macros in production with "html" options, or ones ending with "html", you must sanitise the HTML to protect against cross-site scripting exploits.

Primary options
Name Type Description
id string Required. The id of the input.
name string Required. The name of the input, which is submitted with the form data.
type string Type of input control to render. Defaults to "text".
inputmode string Optional value for inputmode.
value string Optional initial value of the input.
describedBy string One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
label object Required. Options for the label component. See label.
hint object Options for the hint component. See hint.
errorMessage object Options for the error message component. The error message component will not display if you use a falsy value for errorMessage, for example false or null. See errorMessage.
prefix object Options for the prefix element. See prefix.
suffix object Options for the suffix element. See suffix.
formGroup object Options for the form-group wrapper See formGroup.
classes string Classes to add to the input.
autocomplete string Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
pattern string Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
spellcheck boolean Optional field to enable or disable the spellcheck attribute on the input.
attributes object HTML attributes (for example data attributes) to add to the anchor tag.
Options for prefix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the prefix.
attributes object HTML attributes (for example data attributes) to add to the prefix element.
Options for suffix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the suffix element.
attributes object HTML attributes (for example data attributes) to add to the suffix element.
Options for formGroup
Name Type Description
classes string Classes to add to the form group (e.g. to show error state for the whole group)
Options for label
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the label. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the label. If `html` is provided, the `text` argument will be ignored.
for string The value of the for attribute, the id of the input the label is associated with.
isPageHeading boolean Whether the label also acts as the heading for the page.
classes string Classes to add to the label tag.
attributes object HTML attributes (for example data attributes) to add to the label tag.
Options for hint
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the hint. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the hint. If `html` is provided, the `text` argument will be ignored.
id string Optional id attribute to add to the hint span tag.
classes string Classes to add to the hint span tag.
attributes object HTML attributes (for example data attributes) to add to the hint span tag.
{% from "govuk/components/input/macro.njk" import govukInput %}

{{ govukInput({
  label: {
    text: "Reference number"
  },
  id: "name",
  name: "name",
  spellcheck: false
}) }}

Browsers do not consistently spellcheck user’s input by default. If you are asking a question where spellcheck would be useful, set the spellcheck attribute to true.

Error messages

Error messages should be styled like this:

<div class="govuk-form-group govuk-form-group--error">
  <h1 class="govuk-label-wrapper"><label class="govuk-label govuk-label--l" for="event-name">
      What is the name of the event?
    </label>
  </h1>
  <div id="event-name-hint" class="govuk-hint">
    The name you’ll use on promotional material.
  </div>
  <span id="event-name-error" class="govuk-error-message">
    <span class="govuk-visually-hidden">Error:</span> Enter an event name
  </span>
  <input class="govuk-input govuk-input--error" id="event-name" name="event-name" type="text" aria-describedby="event-name-hint event-name-error">
</div>
Nunjucks macro options

Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.

Some options are required for the macro to work; these are marked as "Required" in the option description.

If you're using Nunjucks macros in production with "html" options, or ones ending with "html", you must sanitise the HTML to protect against cross-site scripting exploits.

Primary options
Name Type Description
id string Required. The id of the input.
name string Required. The name of the input, which is submitted with the form data.
type string Type of input control to render. Defaults to "text".
inputmode string Optional value for inputmode.
value string Optional initial value of the input.
describedBy string One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
label object Required. Options for the label component. See label.
hint object Options for the hint component. See hint.
errorMessage object Options for the error message component. The error message component will not display if you use a falsy value for errorMessage, for example false or null. See errorMessage.
prefix object Options for the prefix element. See prefix.
suffix object Options for the suffix element. See suffix.
formGroup object Options for the form-group wrapper See formGroup.
classes string Classes to add to the input.
autocomplete string Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
pattern string Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
spellcheck boolean Optional field to enable or disable the spellcheck attribute on the input.
attributes object HTML attributes (for example data attributes) to add to the anchor tag.
Options for prefix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the prefix.
attributes object HTML attributes (for example data attributes) to add to the prefix element.
Options for suffix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the suffix element.
attributes object HTML attributes (for example data attributes) to add to the suffix element.
Options for formGroup
Name Type Description
classes string Classes to add to the form group (e.g. to show error state for the whole group)
Options for label
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the label. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the label. If `html` is provided, the `text` argument will be ignored.
for string The value of the for attribute, the id of the input the label is associated with.
isPageHeading boolean Whether the label also acts as the heading for the page.
classes string Classes to add to the label tag.
attributes object HTML attributes (for example data attributes) to add to the label tag.
Options for hint
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the hint. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the hint. If `html` is provided, the `text` argument will be ignored.
id string Optional id attribute to add to the hint span tag.
classes string Classes to add to the hint span tag.
attributes object HTML attributes (for example data attributes) to add to the hint span tag.
{% from "govuk/components/input/macro.njk" import govukInput %}

{{ govukInput({
  label: {
    text: "What is the name of the event?",
    classes: "govuk-label--l",
    isPageHeading: true
  },
  id: "event-name",
  name: "event-name",
  hint: {
    text: "The name you’ll use on promotional material."
  },
  errorMessage: {
    text: "Enter an event name"
  }
}) }}

If the input has a prefix or a suffix

<div class="govuk-form-group govuk-form-group--error">
  <h1 class="govuk-label-wrapper"><label class="govuk-label govuk-label--l" for="cost-per-item-error">
      What is the cost per item, in pounds?
    </label>
  </h1>
  <span id="cost-per-item-error-error" class="govuk-error-message">
    <span class="govuk-visually-hidden">Error:</span> Enter a cost per item, in pounds
  </span>
  <div class="govuk-input__wrapper">
    <div class="govuk-input__prefix" aria-hidden="true">£</div>
    <input class="govuk-input govuk-input--width-5 govuk-input--error" id="cost-per-item-error" name="cost-per-item-error" type="text" spellcheck="false" aria-describedby="cost-per-item-error-error">
    <div class="govuk-input__suffix" aria-hidden="true">per item</div>
  </div>
</div>
Nunjucks macro options

Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.

Some options are required for the macro to work; these are marked as "Required" in the option description.

If you're using Nunjucks macros in production with "html" options, or ones ending with "html", you must sanitise the HTML to protect against cross-site scripting exploits.

Primary options
Name Type Description
id string Required. The id of the input.
name string Required. The name of the input, which is submitted with the form data.
type string Type of input control to render. Defaults to "text".
inputmode string Optional value for inputmode.
value string Optional initial value of the input.
describedBy string One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
label object Required. Options for the label component. See label.
hint object Options for the hint component. See hint.
errorMessage object Options for the error message component. The error message component will not display if you use a falsy value for errorMessage, for example false or null. See errorMessage.
prefix object Options for the prefix element. See prefix.
suffix object Options for the suffix element. See suffix.
formGroup object Options for the form-group wrapper See formGroup.
classes string Classes to add to the input.
autocomplete string Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
pattern string Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
spellcheck boolean Optional field to enable or disable the spellcheck attribute on the input.
attributes object HTML attributes (for example data attributes) to add to the anchor tag.
Options for prefix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the prefix.
attributes object HTML attributes (for example data attributes) to add to the prefix element.
Options for suffix
Name Type Description
text string Required. Required. If html is set, this is not required. Text to use within the label. If html is provided, the text argument will be ignored.
html string Required. Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text argument will be ignored.
classes string Classes to add to the suffix element.
attributes object HTML attributes (for example data attributes) to add to the suffix element.
Options for formGroup
Name Type Description
classes string Classes to add to the form group (e.g. to show error state for the whole group)
Options for label
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the label. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the label. If `html` is provided, the `text` argument will be ignored.
for string The value of the for attribute, the id of the input the label is associated with.
isPageHeading boolean Whether the label also acts as the heading for the page.
classes string Classes to add to the label tag.
attributes object HTML attributes (for example data attributes) to add to the label tag.
Options for hint
Name Type Description
text string Required. If `html` is set, this is not required. Text to use within the hint. If `html` is provided, the `text` argument will be ignored.
html string Required. If `text` is set, this is not required. HTML to use within the hint. If `html` is provided, the `text` argument will be ignored.
id string Optional id attribute to add to the hint span tag.
classes string Classes to add to the hint span tag.
attributes object HTML attributes (for example data attributes) to add to the hint span tag.
{% from "govuk/components/input/macro.njk" import govukInput %}

{{ govukInput({
  id: "cost-per-item-error",
  name: "cost-per-item-error",
  label: {
    text: "What is the cost per item, in pounds?",
    classes: "govuk-label--l",
    isPageHeading: true
  },
  prefix: {
    text: "£"
  },
  suffix: {
    text: "per item"
  },
  errorMessage: {
    text: "Enter a cost per item, in pounds"
  },
  classes: "govuk-input--width-5",
  spellcheck: false
}) }}

Make sure errors follow the guidance in error message and have specific error messages for specific error states.

If the input is empty

Say ‘Enter [whatever it is]’.
For example, ‘Enter your first name’.

If the input is too long

Say ‘[whatever it is] must be [number] characters or fewer’.
For example, ‘Address line 1 must be 35 characters or fewer’.

If the input is too short

Say ‘[whatever it is] must be [number] characters or more’.
For example, ‘Full name must be 2 characters or more’.

If the input has both a minimum and maximum length

Say ‘[whatever it is] must be between [number] and [number] characters’.
For example, ‘Last name must be between 2 and 35 characters’.

If the input uses characters that are not allowed and you know what the characters are

Say ‘[whatever it is] must not include [characters]’.
For example, ‘Town or city must not include è and £’.

If the input uses characters that are not allowed and you do not know what the characters are

Say ‘[whatever it is] must only include [list of allowed characters]’.
For example, ‘Full name must only include letters a to z, hyphens, spaces and apostrophes’.

If the input is not a number

Say ‘[whatever it is] must be a number [optional example]’.
For example, ‘Hours worked a week must be a number, like 30’.

If the input requires a decimal, use a decimal in the example. If the input allows both whole numbers and decimals, use both in the example.

If the input is not a whole number

Say ‘[whatever it is] must be a whole number [optional example]’.
For example, ‘Hours worked a week must be a whole number, like 30’.

If the number is too low

Say ‘[whatever it is] must be [lowest] or more’.
For example, ‘Hours worked a week must be 16 or more’.

If the number is too high

Say ‘[whatever it is] must be [highest] or fewer’.
For example, ‘Hours worked a week must be 99 or fewer’.

If the input must be between 2 numbers

Say ‘[whatever it is] must be between [lowest] and [highest]’.
For example, ‘Hours worked a week must be between 16 and 99’.

If the input is an amount of money that needs decimals

Say ‘[whatever it is] must include pence, like 123.45 or 156.00’.
For example, ‘How much you earn a week must include pence, like 123.45 or 156.00’.

If the input is an amount of money that must not have decimals

Say ‘[whatever it is] must not include pence, like 123 or 156’.
For example, ‘How much you earn a week must not include pence, like 123 or 156’.

Research on this component

Read a blog post about the problems we discovered with input type=”number”.

Help improve this page

To help make sure that this page is useful, relevant and up to date, you can:

Need help?

If you’ve got a question about the GOV.UK Design System, contact the team.