bugfixes
This commit is contained in:
parent
35d815d5e6
commit
6d2f591004
3 changed files with 5 additions and 0 deletions
|
|
@ -37,6 +37,9 @@
|
|||
<p>{{ "login.errorMail0" | translate }}</p>
|
||||
} @if (loginSerivce.errorCode == 'auth/invalid-email') {
|
||||
<p>{{ "login.errorMail1" | translate }}</p>
|
||||
} @if (mail.valid && mail.touched &&
|
||||
!checkIfUserEmailIsValid(loginData.mail.toLowerCase())) {
|
||||
<p>{{ "login.errorMail2" | translate }}</p>
|
||||
}
|
||||
</div>
|
||||
<input
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
"guest": "Gastzugang",
|
||||
"errorMail0": "Sie müssen eine E-Mail Adresse eingeben!",
|
||||
"errorMail1": "Diese E-Mail Adresse existiert nicht!",
|
||||
"errorMail2": "Dies ist kein gültiges E-Mail-Format!",
|
||||
"errorPassword0": "Sie müssen ein Passwort eingeben!",
|
||||
"errorPassword1": "Das Passwort stimmt nicht mit der E-Mail Adresse überein!",
|
||||
"loginDialog0": "Einloggen",
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
"guest": "Guest Log in",
|
||||
"errorMail0": "You must enter a mail!",
|
||||
"errorMail1": "This email address does not exist!",
|
||||
"errorMail2": "This is not a valid email format!",
|
||||
"errorPassword0": "You must enter a password!",
|
||||
"errorPassword1": "The password does not match the email address!",
|
||||
"loginDialog0": "Logging in",
|
||||
|
|
|
|||
Loading…
Reference in a new issue