Sign Up
@if (registrationSuccess) {

Please check your email to confirm your email address and complete the registration process.

To the login
} @else {
@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 a password

} @else { @if (authData.password && authData.password.length < 6 && password.touched) {

Password is too short, min 6 characters

} }
@if (authData.password !== authData.passwordConfirm && passwordConfirm.touched) {

The passwords do not match

}
}