Handling Form Errors
Forms are one of the most complex things to design, and one of the most challenging aspects is handling errors.
When something goes wrong, we need to clearly indicate what the issue is and how the user can fix it — or offer support if they cannot. Good error handling gives users a sense of control and builds trust, while poor error handling breaks trust and fuels frustration.
Good errors handling
Good errors address two things:
- Where did the error happen?
- What caused the error, and how can the user fix it?
Also, as all good UI, it should maintains no delay or minimal one between action and feedback, and preserves users' data between actions.
The Validation Errors
Most of the form errors are Validation Errors that occur in some of the input fields. Traditionally they are placed directly above or below the field.
Traditional error message placement creates an ugly layout.
Unfortunately, this leads to either jumpy behavior or ugly holes in the layout if we try to reserve space for messages. Plus, this approach leaves us with very little space for potentially long messages and allows messages to stick to the wrong field.
Instead of placing messages near the field, we could separate the field status (e.g., valid or not) from the message itself by placing the status indicator inside the input and adding a tooltip.
Inline field statuses and tooltips are easier to understand and more flexible.
This way, it's easy to graps whether a field is valid or not, and we can provide not only error messages, but different tips to help users understand what kind of data we need.
The Processing Errors
Second class of errors is the Processing Errors which occur when our server receives the form data and starts performing actions. These types of errors are related to the form as a whole, and likely something unexpected is happening.
Since processing errors are linked to form submission, the error could be treated as a returning from a form upon submission.
Form processing errors should be treated as a form return.
Note that an error screen clearly indicates the form state — there is an error — while different types of notification systems leave the state ambiguous.
Additionally, we clearly indicate that we understand what kind of error occurred and what we will do to help the user.
More to add
- Dealing with Async
- Error messages copywritting
- Code examples
- a11y