<option*ngFor="let item of countries"[textContent]="'+'+item.optionalText"[ngValue]="item.id"></option>
</select>
</div>
<inputtype="text"block[class.border-left-0]="form.type.value&&form.type.value ==='M'"[attr.maxlength]="form.type.value&&form.type.value ==='M'?10:100"tabindex="2"formControlName="username"autocomplete="nope"class="form-control"placeholder="Enter mobile number or email address"[ngClass]="{'is-invalid':(submitted&&form.username.errors)}"/>
<inputtype="password"formControlName="password"blockautocomplete="nope"class="form-control"[ngClass]="{'is-invalid':submitted&&form.password.errors}"placeholder="Your new password"/>
<option*ngFor="let item of countries"[textContent]="'+'+item.optionalText"[ngValue]="item.id"></option>
</select>
</div>
<inputtabindex="0"type="text"block[class.border-left-0]="form.type.value&&form.type.value ==='M'"[attr.maxlength]="form.type.value&&form.type.value ==='M'?10:100"formControlName="username"autocomplete="nope"class="form-control"[ngClass]="{'is-invalid':(submitted&&form.username.errors)}"placeholder="Enter mobile number or email address"/>
<inputtype="text"class="form-control form-control-sm"(keyup.enter)="onApplyFilters()"autocomplete="nope"[(ngModel)]="filters.options.fullName"blockmaxlength="152"placeholder="Enter full name"/>
<inputtype="text"class="form-control form-control-sm"(keyup.enter)="onApplyFilters()"autocomplete="nope"[(ngModel)]="filters.options.mobile"numbersOnlyblockmaxlength="10"placeholder="Enter mobile number"/>
<inputtype="password"formControlName="password"blockautocomplete="nope"class="form-control"[ngClass]="{'is-invalid':submitted&&forms.passwordForm.password.errors}"(keypress)="space($event)"placeholder="Your new password"/>
Password must contain minimum of 1 Specialcharacter, LowerCAse aplhabet, Uppercase Alphabet and Number.
</div>
</div>
</div>
<divclass="form-group">
<labelclass="mb-1">Re-enter Password</label>
<divclass="input-group mb-0">
<inputtype="password"formControlName="confirmPassword"blockautocomplete="nope"class="form-control"[ngClass]="{'is-invalid':submitted&&forms.passwordForm.confirmPassword.errors}"(keypress)="space($event)"placeholder="Your new password again"/>
<div*ngIf="forms.passwordForm.confirmPassword.errors.minLength || forms.passwordForm.confirmPassword.errors.notEquivalent ">Password were not matched</div>