|
|
|
|
|
by dozzie
3280 days ago
|
|
> Field level validation(Is this email in a valid format) checking that input is sane is done at the UI level. In two places in UI: as close to the user as possible (which improves
ergonomics) and at the system's border (which prevents entering invalid data
to the system at all). While the former is somewhat optional, the latter is
absolutely necessary and cannot be left to client-side JavaScript. |
|