Input validation
The user needs feedback about the correctness of the data.
Problem
The user needs feedback about the correctness of the data.
Solution
Whenever a user submits content via forms, errors will happen from time to time. The goal is to minimize user errors and improve the user experience
Validating the data before submitting it helps in keeping the data clean and in the correct format.
Use this whenever structured format is required.
Use this for validating the presence of content or the content itself.
Provide clear instructions on how to correct the error.
Highlight the error and navigate to the first occurrence. Especially on longer forms the error might not be visible on submission and scrolling the user to the appropriate field helps in spotting and fixing the problem fast.
Problem
The user needs feedback about the correctness of the data.
Solution
Whenever a user submits content via forms, errors will happen from time to time. The goal is to minimize user errors and improve the user experience
Validating the data before submitting it helps in keeping the data clean and in the correct format.
Use this whenever structured format is required.
Use this for validating the presence of content or the content itself.
Provide clear instructions on how to correct the error.
Highlight the error and navigate to the first occurrence. Especially on longer forms the error might not be visible on submission and scrolling the user to the appropriate field helps in spotting and fixing the problem fast.