Labels should be descriptive and concise: aim for no more than 3 words. Write labels in sentence case. Examples: "Repository name", "Payment method".
If you're having trouble keeping label text short, consider using a caption to provide more context.
Placeholder text is never an acceptable substitute for a label because:
When a field is required to have a value, it should be visibly marked as required. An individual checkbox or radio button cannot be marked as required.
The input is what the user interacts with to set the value of the form control. You may pre-fill inputs with smart default values, but be careful about making too many assumptions about what a user wants or needs.
A caption may be used to provide additional context about the field to help users fill in the correct data or explain how the data will be used. Caption text should be as short as possible.
Caption text may be displayed alongside a validation message, or it may be hidden if it only provides redundant information.
Caption text may be used to augment the label, but should not be redundant with the label or any other parts of the form control. If the caption feels redundant, try removing it.
Use caption text that shows new information and provides helpful context
Don’t use caption text that is redundant
A single validation message may be displayed to provide helpful information for a user to complete their task. For example: explain why a value is invalid so they can correct it and submit the form.
An individual checkbox or radio should not have its own validation message or style.
Show a validation message for the group of inputs
Don’t show a validation message for each input
Information from the caption should not be repeated in the error message. Show the validation message and remove the caption. A validation message makes the field easier to spot when a user is scanning for invalid fields.
Hide a caption that is redundant with the validation message
Don’t show a repetitive validation message
For more information about form validation, see the validation guidelines.
Use an open-ended text field when the field does not have a list of possible values. If the input is able to suggest values, use autocomplete to allow users to pick a value or enter their own.
Show a set of selectable options when there is a finite number of possible values.
Forms should have a structure that makes it easy for users to scan. Forms that flow vertically are easier for sighted users to scan visually.
Default to vertically stacked form controls
Don’t lay out forms that flow into columns just to reduce the vertical space used by the form
Form fields should be in a predictable order that flows intuitively.
To achieve an intuitive flow:
Form controls should be sized to fit their value. Start with the browser default width, and adjust as needed.
Input components ship with size variants that adjust font size and padding to maintain consistent hierarchy with adjacent elements.
When there is a collection of closely related fields, they should be labeled and visually grouped together. For example: putting form controls closer together.
To keep forms concise, you may choose to hide or show form controls based on selections the user has made.
Sometimes, progressively disclosed form controls can be visually nested under a parent form control. A common pattern is to use a checkbox or radio “checked” state to decide whether to show a related form control.
If the parent form control provides sufficient visual context, you may visually hide the label. However, you must specify text for a visually hidden label that is accessible to screen readers.
If the parent form control does not provide sufficient context, a visible label should be shown. Make sure the label of the nested form control doesn’t clash with the label of its parent form control.
See progressive disclosure for more information.
Use Primer instead of browser-native validation UI. Browser-native validation messages are not accessible to screen readers, and they visually clash with Primer styles.
Disabled buttons are discouraged, as they don't clearly communicate what actions a user should take to complete a form.
Instead, consider the following validation methods.
Error messages: An invalid field should always have a message explaining why the value does not pass validation. The message should explain why the value is invalid, and unblock users from completing their task by guiding them to a valid value.
Success messages: A success message may be used when a user might need extra assurance that the field's value is valid. For example: when creating a repository name, it’s nice to be assured that the name is available and valid.
The default behavior of the web is to perform validation when the user attempts to submit the form. This lets the user flow quickly through the form without interruption.
When the form fails validation, guide the user to the invalid inputs:
After a form has been submitted and failed validation, you may switch to inline validation to provide quicker feedback.
In a flash alert at the top of the form, list the invalid inputs as anchor links. When the link is activated, place focus in it's corresponding input.
When the flash alert appears, it should be focused.
If the form control is in a valid state, validation should be performed until after the user has made a change to the input and has removed focus from the input.
Don't attempt to validate an input before the user is done with it. Validation may be performed as the user is typing or making their selection, but only after the first time the input has been validated and the input is in an invalid state. This gives the user early positive feedback by removing the error if the user makes a change that fixes it.
If the form control’s validation is likely to take more than 1 second, show a loading indicator.
Forms should follow consistent patterns for submitting and saving data.
If the parent form control provides sufficient visual context, you may visually hide the label. However, you must specify text for a visually hidden label that is accessible to screen readers.
Primer React implementationAn autocomplete input renders a text input that allows a user to quickly filter through a list of options to pick one or more values.
Primer React implementationA set of checkboxes to let users make one or more selections from a short list of options
Primer React implementationA form control renders a labelled input and, optionally, associated validation text and/or hint text.
Primer React implementationA set of radio inputs to let users make a single selection from a short list of options
Primer React implementationA select input may be used when a user needs to select one option from a long list
Primer React implementationA text input is used to set a value that is a single line of text. See the list of types in the MDN docs.
Primer React implementation