Components

Text input

Text inputs allow users to enter any combination of letters, numbers, or symbols to answer questions and provide data.

Examples

Interact with each example to see how it works.

Error state

When to use it

Use the text input component for single line answers, such as a user’s name or phone number.

When not to use it

If you expect multiple line answers from users, do not use the text input component. Use the textarea component instead (currently under development).

How it works

Text input components need be clearly labelled, sized for the answer you require, and provided with any hints the user needs to complete them successfully.

Label text inputs

All text inputs must have visible labels. Placeholder text is not an acceptable replacement for a label because 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, you can put the <label> inside the page heading. This is good practice, as it means that users of screen readers will only hear the contents once.

Use appropriately-sized text inputs

Help users understand what they should enter by making each text input box the right size for the content it’s intended for.

By default, the width of text inputs in the design system 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 text input

Use fixed-width inputs for content that has a specific, known length. For example, postcode inputs should be postcode-sized, and 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.

Hint text

Use hint text (also known as help text) for advice that’s relevant to the majority of users, like how their information will be used, or where to find it.

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. If you are working in production and there is a relevant input purpose, you’ll need to use the autocomplete attribute to meet Web Content Accessibility Guidelines (WCAG) 2.1 Level AA.

See how to do this in the following example.

Code

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 that is recognised as a spelling error, sighted users will see a red line under the word.

If you are asking users for information that's not appropriate to spellcheck, like a reference number, name, or email address, disable the spellcheck.

To disable spellcheck, set spellcheck="false".

Code

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

Disabled text inputs

Disabled input elements cannot be clicked by users. You can use them to prevent users from interacting with a specific input until another action is completed.

However, disabled input elements can confuse users so they are best avoided, if possible.

Error messages

Style error messages as shown in the following example.

Error state

Make sure error messages follow the guidance below, and that you 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 less’. For example, ‘Address line 1 must have 35 characters or less’.

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 can be either too short or too long

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 accepts non-allowed characters that you can predict

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

If the input accepts non-allowed characters that you cannot predict

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 must be 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 must be 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 less’. For example, ‘Hours worked a week must be 99 or less’.

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 could be other than an amount of money and allows decimals

Say ‘[whatever it is] must be an amount of money [optional example that includes decimals and non-decimals]’. For example, ‘How much you earn an hour must be an amount of money, like 7.50 or 8’.

If the input could be other than an amount of money and needs decimals

Say ‘[whatever it is] must be an amount of money [optional example that includes decimals]’. For example, ‘How much you earn an hour must be an amount of money, like 7.50 or 8.00’.

If the input is an amount of money that needs decimals

Say ‘[whatever it is] must include cents, like 123.45 or 156.00’. For example, ‘How much you earn a week must include cents, 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 cents, like 123 or 156’. For example, ‘How much you earn a week must not include cents, like 123 or 156’.

Credit

Guidance, original HTML and CSS derived from GOV.UK Design System.

Get in touch

If you’ve got a question, idea, or suggestion, email the Design System (DS) team at info@digital.govt.nz, use our NZGDS Slack app, or discuss Text input on 'GitHub issues'.