commit
248df5af66
|
@ -105,7 +105,7 @@
|
|||
*ngIf="loginForm.get('username')?.errors?.required"
|
||||
jhiTranslate="global.messages.validate.email.required"
|
||||
>
|
||||
Your email is required.
|
||||
Your email is required
|
||||
</small>
|
||||
|
||||
<small
|
||||
|
@ -113,7 +113,7 @@
|
|||
*ngIf="loginForm.get('username')?.errors?.invalid"
|
||||
jhiTranslate="global.messages.validate.email.invalid"
|
||||
>
|
||||
Your email is invalid.
|
||||
Your email is invalid
|
||||
</small>
|
||||
|
||||
<small
|
||||
|
@ -121,7 +121,7 @@
|
|||
*ngIf="loginForm.get('username')?.errors?.minlength"
|
||||
jhiTranslate="global.messages.validate.email.minlength"
|
||||
>
|
||||
Your email is required to be at least 5 characters.
|
||||
Your email is required to be at least 5 characters
|
||||
</small>
|
||||
|
||||
<small
|
||||
|
@ -129,7 +129,7 @@
|
|||
*ngIf="loginForm.get('username')?.errors?.maxlength"
|
||||
jhiTranslate="global.messages.validate.email.maxlength"
|
||||
>
|
||||
Your email cannot be longer than 100 characters.
|
||||
Your email cannot be longer than 100 characters
|
||||
</small>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -155,7 +155,7 @@
|
|||
*ngIf="loginForm.get('password')?.errors?.required"
|
||||
jhiTranslate="global.messages.validate.newpassword.required"
|
||||
>
|
||||
Your password is required.
|
||||
Your password is required
|
||||
</small>
|
||||
|
||||
<small
|
||||
|
@ -163,7 +163,7 @@
|
|||
*ngIf="loginForm.get('password')?.errors?.minlength"
|
||||
jhiTranslate="global.messages.validate.newpassword.minlength"
|
||||
>
|
||||
Your password is required to be at least 4 characters.
|
||||
Your password is required to be at least 8 characters
|
||||
</small>
|
||||
|
||||
<small
|
||||
|
@ -171,7 +171,7 @@
|
|||
*ngIf="loginForm.get('password')?.errors?.maxlength"
|
||||
jhiTranslate="global.messages.validate.newpassword.maxlength"
|
||||
>
|
||||
Your password cannot be longer than 50 characters.
|
||||
Your password cannot be longer than 50 characters
|
||||
</small>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue