<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
string |
Required.
The ID of the input.
|
string |
Required.
The name of the input, which is submitted with the form data.
|
string |
Type of input control to render, for example, a password input control. Defaults to text .
|
string |
Optional value for inputmode.
|
string |
Optional initial value of the input.
|
boolean |
If true , input will be disabled.
|
string |
One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
|
object |
Required.
Options for the label component.
See label.
|
object |
Options for the hint component.
See hint.
|
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.
|
object |
Options for the prefix element.
See prefix.
|
object |
Options for the suffix element.
See suffix.
|
object |
Options for the form-group wrapper.
See formGroup.
|
string |
Classes to add to the input.
|
string |
Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
|
string |
Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
|
boolean |
Optional field to enable or disable the spellcheck attribute on the input.
|
object |
HTML attributes (for example data attributes) to add to the input.
|
Options for prefix
string |
Required.
Required. If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
Classes to add to the prefix.
|
object |
HTML attributes (for example data attributes) to add to the prefix element.
|
Options for suffix
string |
Required.
If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
Classes to add to the suffix element.
|
object |
HTML attributes (for example data attributes) to add to the suffix element.
|
Options for formGroup
string |
Classes to add to the form group (for example to show error state for the whole group).
|
Options for label
string |
Required.
If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
The value of the for attribute, the ID of the input the label is associated with.
|
boolean |
Whether the label also acts as the heading for the page.
|
string |
Classes to add to the label tag.
|
object |
HTML attributes (for example data attributes) to add to the label tag.
|
Options for hint
string |
Required.
If html is set, this is not required. Text to use within the hint. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the hint. If html is provided, the text option will be ignored.
|
string |
Optional ID attribute to add to the hint span tag.
|
string |
Classes to add to the hint span tag.
|
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
All text inputs must have labels, and in most cases the label should be visible.
You should align labels 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.
Avoid placeholder text
Do not use placeholder text in place of a label, or for hints or examples, as:
- it vanishes when the user starts typing, which can cause problems for users with memory conditions or when reviewing answers
- not all screen readers read it out
- its browser default styles often do not meet minimum contrast requirements
If you’re asking one question on the page
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.
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
string |
Required.
The ID of the input.
|
string |
Required.
The name of the input, which is submitted with the form data.
|
string |
Type of input control to render, for example, a password input control. Defaults to text .
|
string |
Optional value for inputmode.
|
string |
Optional initial value of the input.
|
boolean |
If true , input will be disabled.
|
string |
One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
|
object |
Required.
Options for the label component.
See label.
|
object |
Options for the hint component.
See hint.
|
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.
|
object |
Options for the prefix element.
See prefix.
|
object |
Options for the suffix element.
See suffix.
|
object |
Options for the form-group wrapper.
See formGroup.
|
string |
Classes to add to the input.
|
string |
Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
|
string |
Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
|
boolean |
Optional field to enable or disable the spellcheck attribute on the input.
|
object |
HTML attributes (for example data attributes) to add to the input.
|
Options for prefix
string |
Required.
Required. If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
Classes to add to the prefix.
|
object |
HTML attributes (for example data attributes) to add to the prefix element.
|
Options for suffix
string |
Required.
If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
Classes to add to the suffix element.
|
object |
HTML attributes (for example data attributes) to add to the suffix element.
|
Options for formGroup
string |
Classes to add to the form group (for example to show error state for the whole group).
|
Options for label
string |
Required.
If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
The value of the for attribute, the ID of the input the label is associated with.
|
boolean |
Whether the label also acts as the heading for the page.
|
string |
Classes to add to the label tag.
|
object |
HTML attributes (for example data attributes) to add to the label tag.
|
Options for hint
string |
Required.
If html is set, this is not required. Text to use within the hint. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the hint. If html is provided, the text option will be ignored.
|
string |
Optional ID attribute to add to the hint span tag.
|
string |
Classes to add to the hint span tag.
|
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"
}) }}
If you’re asking more than one question on the page
If you’re asking more than one question on the page, do not set the contents of the <label>
as the page heading. Read more about asking multiple questions on question pages.
<div class="govuk-form-group">
<label class="govuk-label" for="event-name">
What is the name of the event?
</label>
<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
string |
Required.
The ID of the input.
|
string |
Required.
The name of the input, which is submitted with the form data.
|
string |
Type of input control to render, for example, a password input control. Defaults to text .
|
string |
Optional value for inputmode.
|
string |
Optional initial value of the input.
|
boolean |
If true , input will be disabled.
|
string |
One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
|
object |
Required.
Options for the label component.
See label.
|
object |
Options for the hint component.
See hint.
|
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.
|
object |
Options for the prefix element.
See prefix.
|
object |
Options for the suffix element.
See suffix.
|
object |
Options for the form-group wrapper.
See formGroup.
|
string |
Classes to add to the input.
|
string |
Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
|
string |
Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
|
boolean |
Optional field to enable or disable the spellcheck attribute on the input.
|
object |
HTML attributes (for example data attributes) to add to the input.
|
Options for prefix
string |
Required.
Required. If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
Classes to add to the prefix.
|
object |
HTML attributes (for example data attributes) to add to the prefix element.
|
Options for suffix
string |
Required.
If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
Classes to add to the suffix element.
|
object |
HTML attributes (for example data attributes) to add to the suffix element.
|
Options for formGroup
string |
Classes to add to the form group (for example to show error state for the whole group).
|
Options for label
string |
Required.
If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
The value of the for attribute, the ID of the input the label is associated with.
|
boolean |
Whether the label also acts as the heading for the page.
|
string |
Classes to add to the label tag.
|
object |
HTML attributes (for example data attributes) to add to the label tag.
|
Options for hint
string |
Required.
If html is set, this is not required. Text to use within the hint. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the hint. If html is provided, the text option will be ignored.
|
string |
Optional ID attribute to add to the hint span tag.
|
string |
Classes to add to the hint span tag.
|
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?"
},
id: "event-name",
name: "event-name"
}) }}
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.
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.
The widths are designed for specific character lengths and to be consistent across a range of browsers. They include extra padding to fit icons that some browsers might insert into the input (for example to show or generate a password).
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.
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.
Hint text
Use hint text 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
string |
Required.
The ID of the input.
|
string |
Required.
The name of the input, which is submitted with the form data.
|
string |
Type of input control to render, for example, a password input control. Defaults to text .
|
string |
Optional value for inputmode.
|
string |
Optional initial value of the input.
|
boolean |
If true , input will be disabled.
|
string |
One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
|
object |
Required.
Options for the label component.
See label.
|
object |
Options for the hint component.
See hint.
|
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.
|
object |
Options for the prefix element.
See prefix.
|
object |
Options for the suffix element.
See suffix.
|
object |
Options for the form-group wrapper.
See formGroup.
|
string |
Classes to add to the input.
|
string |
Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
|
string |
Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
|
boolean |
Optional field to enable or disable the spellcheck attribute on the input.
|
object |
HTML attributes (for example data attributes) to add to the input.
|
Options for prefix
string |
Required.
Required. If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
Classes to add to the prefix.
|
object |
HTML attributes (for example data attributes) to add to the prefix element.
|
Options for suffix
string |
Required.
If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
Classes to add to the suffix element.
|
object |
HTML attributes (for example data attributes) to add to the suffix element.
|
Options for formGroup
string |
Classes to add to the form group (for example to show error state for the whole group).
|
Options for label
string |
Required.
If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
The value of the for attribute, the ID of the input the label is associated with.
|
boolean |
Whether the label also acts as the heading for the page.
|
string |
Classes to add to the label tag.
|
object |
HTML attributes (for example data attributes) to add to the label tag.
|
Options for hint
string |
Required.
If html is set, this is not required. Text to use within the hint. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the hint. If html is provided, the text option will be ignored.
|
string |
Optional ID attribute to add to the hint span tag.
|
string |
Classes to add to the hint span tag.
|
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"
}) }}
When not to use hint text
Do not use long paragraphs and lists in hint text. Screen readers read out the entire text when users interact with the form element. This could frustrate users if the text is long.
Avoid links
Do not include links within hint text. While screen readers will read out the link text when describing the field, they will not tell users that the text is a link.
Numbers
Asking for whole numbers
If you’re asking the user to enter a whole number, set the inputmode
attribute to numeric
to use the numeric keypad on devices with on-screen keyboards.
See how to do this by opening the HTML and Nunjucks tabs in this example:
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"
.
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.
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.
Codes and sequences
Help the user visually check the code they’ve typed is correct by styling the input’s text to visually separate each character. This is important if you’re asking the user to enter a code or sequence they’re unlikely to have memorised, such as an application reference ID, account number or security code.
You do not need to do this for memorable information, such as phone numbers and postcodes.
<div class="govuk-form-group">
<label class="govuk-label" for="authentication-code">
Company authentication code
</label>
<div id="authentication-code-hint" class="govuk-hint">
This is on the company incorporation letter sent to the registered office address.
</div>
<input class="govuk-input govuk-input--width-5 govuk-input--extra-letter-spacing" id="authentication-code" name="authentication-code" type="text" spellcheck="false" value="NC1701" aria-describedby="authentication-code-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
string |
Required.
The ID of the input.
|
string |
Required.
The name of the input, which is submitted with the form data.
|
string |
Type of input control to render, for example, a password input control. Defaults to text .
|
string |
Optional value for inputmode.
|
string |
Optional initial value of the input.
|
boolean |
If true , input will be disabled.
|
string |
One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
|
object |
Required.
Options for the label component.
See label.
|
object |
Options for the hint component.
See hint.
|
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.
|
object |
Options for the prefix element.
See prefix.
|
object |
Options for the suffix element.
See suffix.
|
object |
Options for the form-group wrapper.
See formGroup.
|
string |
Classes to add to the input.
|
string |
Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
|
string |
Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
|
boolean |
Optional field to enable or disable the spellcheck attribute on the input.
|
object |
HTML attributes (for example data attributes) to add to the input.
|
Options for prefix
string |
Required.
Required. If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
Classes to add to the prefix.
|
object |
HTML attributes (for example data attributes) to add to the prefix element.
|
Options for suffix
string |
Required.
If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
Classes to add to the suffix element.
|
object |
HTML attributes (for example data attributes) to add to the suffix element.
|
Options for formGroup
string |
Classes to add to the form group (for example to show error state for the whole group).
|
Options for label
string |
Required.
If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
The value of the for attribute, the ID of the input the label is associated with.
|
boolean |
Whether the label also acts as the heading for the page.
|
string |
Classes to add to the label tag.
|
object |
HTML attributes (for example data attributes) to add to the label tag.
|
Options for hint
string |
Required.
If html is set, this is not required. Text to use within the hint. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the hint. If html is provided, the text option will be ignored.
|
string |
Optional ID attribute to add to the hint span tag.
|
string |
Classes to add to the hint span tag.
|
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: "Company authentication code"
},
hint: {
text: "This is on the company incorporation letter sent to the registered office address."
},
classes: "govuk-input--width-5 govuk-input--extra-letter-spacing",
id: "authentication-code",
name: "authentication-code",
spellcheck: false,
value: "NC1701"
}) }}
There is specific guidance on how to:
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
string |
Required.
The ID of the input.
|
string |
Required.
The name of the input, which is submitted with the form data.
|
string |
Type of input control to render, for example, a password input control. Defaults to text .
|
string |
Optional value for inputmode.
|
string |
Optional initial value of the input.
|
boolean |
If true , input will be disabled.
|
string |
One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
|
object |
Required.
Options for the label component.
See label.
|
object |
Options for the hint component.
See hint.
|
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.
|
object |
Options for the prefix element.
See prefix.
|
object |
Options for the suffix element.
See suffix.
|
object |
Options for the form-group wrapper.
See formGroup.
|
string |
Classes to add to the input.
|
string |
Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
|
string |
Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
|
boolean |
Optional field to enable or disable the spellcheck attribute on the input.
|
object |
HTML attributes (for example data attributes) to add to the input.
|
Options for prefix
string |
Required.
Required. If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
Classes to add to the prefix.
|
object |
HTML attributes (for example data attributes) to add to the prefix element.
|
Options for suffix
string |
Required.
If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
Classes to add to the suffix element.
|
object |
HTML attributes (for example data attributes) to add to the suffix element.
|
Options for formGroup
string |
Classes to add to the form group (for example to show error state for the whole group).
|
Options for label
string |
Required.
If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
The value of the for attribute, the ID of the input the label is associated with.
|
boolean |
Whether the label also acts as the heading for the page.
|
string |
Classes to add to the label tag.
|
object |
HTML attributes (for example data attributes) to add to the label tag.
|
Options for hint
string |
Required.
If html is set, this is not required. Text to use within the hint. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the hint. If html is provided, the text option will be ignored.
|
string |
Optional ID attribute to add to the hint span tag.
|
string |
Classes to add to the hint span tag.
|
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 screen readers will not read them out.
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.
Position prefixes and suffixes so that they’re outside of their input. This is to avoid interfering with some browsers that might insert an icon into the input (for example to show or generate a password).
Some users may miss 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
string |
Required.
The ID of the input.
|
string |
Required.
The name of the input, which is submitted with the form data.
|
string |
Type of input control to render, for example, a password input control. Defaults to text .
|
string |
Optional value for inputmode.
|
string |
Optional initial value of the input.
|
boolean |
If true , input will be disabled.
|
string |
One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
|
object |
Required.
Options for the label component.
See label.
|
object |
Options for the hint component.
See hint.
|
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.
|
object |
Options for the prefix element.
See prefix.
|
object |
Options for the suffix element.
See suffix.
|
object |
Options for the form-group wrapper.
See formGroup.
|
string |
Classes to add to the input.
|
string |
Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
|
string |
Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
|
boolean |
Optional field to enable or disable the spellcheck attribute on the input.
|
object |
HTML attributes (for example data attributes) to add to the input.
|
Options for prefix
string |
Required.
Required. If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
Classes to add to the prefix.
|
object |
HTML attributes (for example data attributes) to add to the prefix element.
|
Options for suffix
string |
Required.
If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
Classes to add to the suffix element.
|
object |
HTML attributes (for example data attributes) to add to the suffix element.
|
Options for formGroup
string |
Classes to add to the form group (for example to show error state for the whole group).
|
Options for label
string |
Required.
If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
The value of the for attribute, the ID of the input the label is associated with.
|
boolean |
Whether the label also acts as the heading for the page.
|
string |
Classes to add to the label tag.
|
object |
HTML attributes (for example data attributes) to add to the label tag.
|
Options for hint
string |
Required.
If html is set, this is not required. Text to use within the hint. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the hint. If html is provided, the text option will be ignored.
|
string |
Optional ID attribute to add to the hint span tag.
|
string |
Classes to add to the hint span tag.
|
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
string |
Required.
The ID of the input.
|
string |
Required.
The name of the input, which is submitted with the form data.
|
string |
Type of input control to render, for example, a password input control. Defaults to text .
|
string |
Optional value for inputmode.
|
string |
Optional initial value of the input.
|
boolean |
If true , input will be disabled.
|
string |
One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
|
object |
Required.
Options for the label component.
See label.
|
object |
Options for the hint component.
See hint.
|
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.
|
object |
Options for the prefix element.
See prefix.
|
object |
Options for the suffix element.
See suffix.
|
object |
Options for the form-group wrapper.
See formGroup.
|
string |
Classes to add to the input.
|
string |
Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
|
string |
Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
|
boolean |
Optional field to enable or disable the spellcheck attribute on the input.
|
object |
HTML attributes (for example data attributes) to add to the input.
|
Options for prefix
string |
Required.
Required. If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
Classes to add to the prefix.
|
object |
HTML attributes (for example data attributes) to add to the prefix element.
|
Options for suffix
string |
Required.
If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
Classes to add to the suffix element.
|
object |
HTML attributes (for example data attributes) to add to the suffix element.
|
Options for formGroup
string |
Classes to add to the form group (for example to show error state for the whole group).
|
Options for label
string |
Required.
If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
The value of the for attribute, the ID of the input the label is associated with.
|
boolean |
Whether the label also acts as the heading for the page.
|
string |
Classes to add to the label tag.
|
object |
HTML attributes (for example data attributes) to add to the label tag.
|
Options for hint
string |
Required.
If html is set, this is not required. Text to use within the hint. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the hint. If html is provided, the text option will be ignored.
|
string |
Optional ID attribute to add to the hint span tag.
|
string |
Classes to add to the hint span tag.
|
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
string |
Required.
The ID of the input.
|
string |
Required.
The name of the input, which is submitted with the form data.
|
string |
Type of input control to render, for example, a password input control. Defaults to text .
|
string |
Optional value for inputmode.
|
string |
Optional initial value of the input.
|
boolean |
If true , input will be disabled.
|
string |
One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
|
object |
Required.
Options for the label component.
See label.
|
object |
Options for the hint component.
See hint.
|
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.
|
object |
Options for the prefix element.
See prefix.
|
object |
Options for the suffix element.
See suffix.
|
object |
Options for the form-group wrapper.
See formGroup.
|
string |
Classes to add to the input.
|
string |
Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
|
string |
Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
|
boolean |
Optional field to enable or disable the spellcheck attribute on the input.
|
object |
HTML attributes (for example data attributes) to add to the input.
|
Options for prefix
string |
Required.
Required. If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
Classes to add to the prefix.
|
object |
HTML attributes (for example data attributes) to add to the prefix element.
|
Options for suffix
string |
Required.
If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
Classes to add to the suffix element.
|
object |
HTML attributes (for example data attributes) to add to the suffix element.
|
Options for formGroup
string |
Classes to add to the form group (for example to show error state for the whole group).
|
Options for label
string |
Required.
If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
The value of the for attribute, the ID of the input the label is associated with.
|
boolean |
Whether the label also acts as the heading for the page.
|
string |
Classes to add to the label tag.
|
object |
HTML attributes (for example data attributes) to add to the label tag.
|
Options for hint
string |
Required.
If html is set, this is not required. Text to use within the hint. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the hint. If html is provided, the text option will be ignored.
|
string |
Optional ID attribute to add to the hint span tag.
|
string |
Classes to add to the hint span tag.
|
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.
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
string |
Required.
The ID of the input.
|
string |
Required.
The name of the input, which is submitted with the form data.
|
string |
Type of input control to render, for example, a password input control. Defaults to text .
|
string |
Optional value for inputmode.
|
string |
Optional initial value of the input.
|
boolean |
If true , input will be disabled.
|
string |
One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
|
object |
Required.
Options for the label component.
See label.
|
object |
Options for the hint component.
See hint.
|
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.
|
object |
Options for the prefix element.
See prefix.
|
object |
Options for the suffix element.
See suffix.
|
object |
Options for the form-group wrapper.
See formGroup.
|
string |
Classes to add to the input.
|
string |
Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
|
string |
Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
|
boolean |
Optional field to enable or disable the spellcheck attribute on the input.
|
object |
HTML attributes (for example data attributes) to add to the input.
|
Options for prefix
string |
Required.
Required. If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
Classes to add to the prefix.
|
object |
HTML attributes (for example data attributes) to add to the prefix element.
|
Options for suffix
string |
Required.
If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
Classes to add to the suffix element.
|
object |
HTML attributes (for example data attributes) to add to the suffix element.
|
Options for formGroup
string |
Classes to add to the form group (for example to show error state for the whole group).
|
Options for label
string |
Required.
If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
The value of the for attribute, the ID of the input the label is associated with.
|
boolean |
Whether the label also acts as the heading for the page.
|
string |
Classes to add to the label tag.
|
object |
HTML attributes (for example data attributes) to add to the label tag.
|
Options for hint
string |
Required.
If html is set, this is not required. Text to use within the hint. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the hint. If html is provided, the text option will be ignored.
|
string |
Optional ID attribute to add to the hint span tag.
|
string |
Classes to add to the hint span tag.
|
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>
<p id="event-name-error" class="govuk-error-message">
<span class="govuk-visually-hidden">Error:</span> Enter an event name
</p>
<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
string |
Required.
The ID of the input.
|
string |
Required.
The name of the input, which is submitted with the form data.
|
string |
Type of input control to render, for example, a password input control. Defaults to text .
|
string |
Optional value for inputmode.
|
string |
Optional initial value of the input.
|
boolean |
If true , input will be disabled.
|
string |
One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
|
object |
Required.
Options for the label component.
See label.
|
object |
Options for the hint component.
See hint.
|
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.
|
object |
Options for the prefix element.
See prefix.
|
object |
Options for the suffix element.
See suffix.
|
object |
Options for the form-group wrapper.
See formGroup.
|
string |
Classes to add to the input.
|
string |
Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
|
string |
Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
|
boolean |
Optional field to enable or disable the spellcheck attribute on the input.
|
object |
HTML attributes (for example data attributes) to add to the input.
|
Options for prefix
string |
Required.
Required. If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
Classes to add to the prefix.
|
object |
HTML attributes (for example data attributes) to add to the prefix element.
|
Options for suffix
string |
Required.
If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
Classes to add to the suffix element.
|
object |
HTML attributes (for example data attributes) to add to the suffix element.
|
Options for formGroup
string |
Classes to add to the form group (for example to show error state for the whole group).
|
Options for label
string |
Required.
If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
The value of the for attribute, the ID of the input the label is associated with.
|
boolean |
Whether the label also acts as the heading for the page.
|
string |
Classes to add to the label tag.
|
object |
HTML attributes (for example data attributes) to add to the label tag.
|
Options for hint
string |
Required.
If html is set, this is not required. Text to use within the hint. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the hint. If html is provided, the text option will be ignored.
|
string |
Optional ID attribute to add to the hint span tag.
|
string |
Classes to add to the hint span tag.
|
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"
}
}) }}
<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>
<p id="cost-per-item-error-error" class="govuk-error-message">
<span class="govuk-visually-hidden">Error:</span> Enter a cost per item, in pounds
</p>
<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
string |
Required.
The ID of the input.
|
string |
Required.
The name of the input, which is submitted with the form data.
|
string |
Type of input control to render, for example, a password input control. Defaults to text .
|
string |
Optional value for inputmode.
|
string |
Optional initial value of the input.
|
boolean |
If true , input will be disabled.
|
string |
One or more element IDs to add to the aria-describedby attribute, used to provide additional descriptive information for screenreader users.
|
object |
Required.
Options for the label component.
See label.
|
object |
Options for the hint component.
See hint.
|
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.
|
object |
Options for the prefix element.
See prefix.
|
object |
Options for the suffix element.
See suffix.
|
object |
Options for the form-group wrapper.
See formGroup.
|
string |
Classes to add to the input.
|
string |
Attribute to identify input purpose, for instance "postal-code" or "username". See autofill for full list of attributes that can be used.
|
string |
Attribute to provide a regular expression pattern, used to match allowed character combinations for the input value.
|
boolean |
Optional field to enable or disable the spellcheck attribute on the input.
|
object |
HTML attributes (for example data attributes) to add to the input.
|
Options for prefix
string |
Required.
Required. If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
Required. If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
Classes to add to the prefix.
|
object |
HTML attributes (for example data attributes) to add to the prefix element.
|
Options for suffix
string |
Required.
If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
Classes to add to the suffix element.
|
object |
HTML attributes (for example data attributes) to add to the suffix element.
|
Options for formGroup
string |
Classes to add to the form group (for example to show error state for the whole group).
|
Options for label
string |
Required.
If html is set, this is not required. Text to use within the label. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the label. If html is provided, the text option will be ignored.
|
string |
The value of the for attribute, the ID of the input the label is associated with.
|
boolean |
Whether the label also acts as the heading for the page.
|
string |
Classes to add to the label tag.
|
object |
HTML attributes (for example data attributes) to add to the label tag.
|
Options for hint
string |
Required.
If html is set, this is not required. Text to use within the hint. If html is provided, the text option will be ignored.
|
string |
Required.
If text is set, this is not required. HTML to use within the hint. If html is provided, the text option will be ignored.
|
string |
Optional ID attribute to add to the hint span tag.
|
string |
Classes to add to the hint span tag.
|
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.
Say ‘Enter [whatever it is]’.
For example, ‘Enter your first name’.
Say ‘[whatever it is] must be [number] characters or less’.
For example, ‘Address line 1 must be 35 characters or less’.
Say ‘[whatever it is] must be [number] characters or more’.
For example, ‘Full name must be 2 characters or more’.
Say ‘[whatever it is] must be between [number] and [number] characters’.
For example, ‘Last name must be between 2 and 35 characters’.
Say ‘[whatever it is] must not include [characters]’.
For example, ‘Town or city must not include è and £’.
Support all the characters the user might need to enter, including numbers and symbols.
Say ‘[whatever it is] must only include [list of allowed characters]’.
For example, ‘Full name must only include letters a to z, and special characters such as hyphens, spaces and apostrophes’.
Support all the characters the user might need to enter, including numbers and symbols.
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.
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’.
Say ‘[whatever it is] must be between [lowest] and [highest]’.
For example, ‘Hours worked a week must be between 16 and 99’.
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’.
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”.
The prefix and suffix design has tested well in a number of services, but some users have been observed clicking on prefixes, on the assumption that this would do something.
To help make sure that this page is useful, relevant and up to date, you can: