|
|
|
@ -14,15 +14,15 @@ import { PasswordHideShowComponent } from '../../shared/components/password-hide
|
|
|
|
})
|
|
|
|
})
|
|
|
|
export class FeedbackSetupComponent {
|
|
|
|
export class FeedbackSetupComponent {
|
|
|
|
@ViewChild('psh') passwordHideShow ?: PasswordHideShowComponent
|
|
|
|
@ViewChild('psh') passwordHideShow ?: PasswordHideShowComponent
|
|
|
|
@ViewChild('psh1') passwordHideShow1 ?: PasswordHideShowComponent
|
|
|
|
@ViewChild('cpsh') confirmPasswordHideShow ?: PasswordHideShowComponent
|
|
|
|
|
|
|
|
|
|
|
|
passwordType: string = 'password';
|
|
|
|
passwordType: string = 'password';
|
|
|
|
passwordType1: string = 'password';
|
|
|
|
confirmPasswordType: string = 'password';
|
|
|
|
|
|
|
|
|
|
|
|
togglePasswordType(){
|
|
|
|
togglePasswordType(){
|
|
|
|
this.passwordType = this.passwordHideShow?.showPassword ? 'password' : 'text';
|
|
|
|
this.passwordType = this.passwordHideShow?.showPassword ? 'password' : 'text';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
togglePasswordType1(){
|
|
|
|
toggleConfirmPasswordType(){
|
|
|
|
this.passwordType1 = this.passwordHideShow1?.showPassword ? 'password' : 'text';
|
|
|
|
this.confirmPasswordType = this.confirmPasswordHideShow?.showPassword ? 'password' : 'text';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|