Merge pull request #23 from Quantum-P3/fix/log-in

Fix/log in
This commit is contained in:
Eduardo Quiros 2021-07-12 04:44:54 +00:00 committed by GitHub
commit 248df5af66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 7 deletions

View File

@ -105,7 +105,7 @@
*ngIf="loginForm.get('username')?.errors?.required" *ngIf="loginForm.get('username')?.errors?.required"
jhiTranslate="global.messages.validate.email.required" jhiTranslate="global.messages.validate.email.required"
> >
Your email is required. Your email is required
</small> </small>
<small <small
@ -113,7 +113,7 @@
*ngIf="loginForm.get('username')?.errors?.invalid" *ngIf="loginForm.get('username')?.errors?.invalid"
jhiTranslate="global.messages.validate.email.invalid" jhiTranslate="global.messages.validate.email.invalid"
> >
Your email is invalid. Your email is invalid
</small> </small>
<small <small
@ -121,7 +121,7 @@
*ngIf="loginForm.get('username')?.errors?.minlength" *ngIf="loginForm.get('username')?.errors?.minlength"
jhiTranslate="global.messages.validate.email.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>
<small <small
@ -129,7 +129,7 @@
*ngIf="loginForm.get('username')?.errors?.maxlength" *ngIf="loginForm.get('username')?.errors?.maxlength"
jhiTranslate="global.messages.validate.email.maxlength" jhiTranslate="global.messages.validate.email.maxlength"
> >
Your email cannot be longer than 100 characters. Your email cannot be longer than 100 characters
</small> </small>
</div> </div>
</div> </div>
@ -155,7 +155,7 @@
*ngIf="loginForm.get('password')?.errors?.required" *ngIf="loginForm.get('password')?.errors?.required"
jhiTranslate="global.messages.validate.newpassword.required" jhiTranslate="global.messages.validate.newpassword.required"
> >
Your password is required. Your password is required
</small> </small>
<small <small
@ -163,7 +163,7 @@
*ngIf="loginForm.get('password')?.errors?.minlength" *ngIf="loginForm.get('password')?.errors?.minlength"
jhiTranslate="global.messages.validate.newpassword.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>
<small <small
@ -171,7 +171,7 @@
*ngIf="loginForm.get('password')?.errors?.maxlength" *ngIf="loginForm.get('password')?.errors?.maxlength"
jhiTranslate="global.messages.validate.newpassword.maxlength" jhiTranslate="global.messages.validate.newpassword.maxlength"
> >
Your password cannot be longer than 50 characters. Your password cannot be longer than 50 characters
</small> </small>
</div> </div>
</div> </div>