{{ "RESET_PASSWORD" | translate }}
cancel
@if (resetPasswordForm.get('password')?.touched && resetPasswordForm.get('password')?.errors) { @if (resetPasswordForm.get('password')?.errors?.['required']) {
{{'PASSWORD_IS_REQUIRED' | translate}}
} @if (resetPasswordForm.get('password')?.errors?.['minlength']) {
{{'YOU_HAVE_TO_ENTER_AT_LEAST_DIGIT' | translate}}
} }
@if (resetPasswordForm.get('confirmPassword')?.touched && resetPasswordForm.get('confirmPassword')?.errors) { @if (resetPasswordForm.get('confirmPassword')?.errors?.['required']) {
{{'CONFIRM_PASSWORD_IS_REQUIRED' | translate}}
} } @if (resetPasswordForm.get('confirmPassword')?.touched && resetPasswordForm.hasError('notSame')) {
{{'PASSWORDS_DO_NOT_MATCH' | translate}}
}