This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 6
6
Controls (`input`, `select`, `textarea`) are ways for a user to enter data.
7
7
A Form is a collection of controls for the purpose of grouping related controls together.
8
8
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.
14
15
15
16
16
17
# Simple form
You can’t perform that action at this time.
0 commit comments