How to validate a login form on Ionic 3

0

How to validate a login form that contains EMAIL and PASSWORD in Ionic 3? Is it necessary to create a new component to validate these fields?

    
asked by anonymous 30.11.2018 / 17:34

1 answer

0

The validations in Ionic 3 can be implemented in JS itself with a valid function () or with angular Froms.

Following is an implementation tutorial for a login screen with FormBuilder that I believe is the most efficient and elegant form validation.

link

    
01.12.2018 / 20:06