+ @if (!mail.valid && mail.touched) {
+
Please enter your email
+ } @else { @if (mail.touched && authData.mail.length > 0 &&
+ !isUserEmailValid(authData.mail.toLowerCase())) {
+
This is not a valid email format
+ }}
+
+
+ @if (!password.valid && password.touched && authData.password.length <
+ 1) {
+
Please enter your password
+ } @else { @if (authData.password.length < 6 && password.touched) {
+
Password is too short, min 6 characters
+ } }
+
+