Forgot your password?
@if (!queryEmail && !sendMailSuccess && !queryEmailSuccess) {

We will send you an email with instructions to reset your password.

@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

}}
} @else { @if (sendMailSuccess) {

If the email you entered exists on our server, you will receive a message with instructions on how to reset your password.

To the login
} @if (queryEmailSuccess) {

Password change successful.
You can now log in with your new password.

To the login
} @if (queryEmail && !queryEmailSuccess) {

Please enter your new password and confirm it.

@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

}
} }