File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 66Controls (`input`, `select`, `textarea`) are ways for a user to enter data.
77A Form is a collection of controls for the purpose of grouping related controls together.
88
9- Form and controls provide validation services, so that the user can be notified of invalid input.
10- This provides a better user experience, because the user gets instant feedback on how to
11- correct the error. Keep in mind that while client-side validation plays an important role
12- in providing good user experience, it can easily be circumvented and thus can not be trusted.
13- Server-side validation is still necessary for a secure application.
9+ Form and controls provide validation services, so that the user can be notified of invalid input
10+ before submitting a form. This provides a better user experience than server-side validation alone
11+ because the user gets instant feedback on how to correct the error. Keep in mind that while
12+ client-side validation plays an important role in providing good user experience, it can easily
13+ be circumvented and thus can not be trusted. Server-side validation is still necessary for a
14+ secure application.
1415
1516
1617# Simple form
You can’t perform that action at this time.
0 commit comments