53 lines
1.4 KiB
HTML
53 lines
1.4 KiB
HTML
<div class="change-password-form">
|
|
<div class="mat-title">비밀번호 변경</div>
|
|
|
|
<form name="changePasswordForm" [formGroup]="changePasswordForm" novalidate>
|
|
<mat-form-field>
|
|
<mat-label>현재 패스워드</mat-label>
|
|
<input
|
|
matInput
|
|
type="password"
|
|
formControlName="currentLoginPw"
|
|
#currentLoginPw
|
|
/>
|
|
<mat-error>
|
|
현재 패스워드를 입력해 주세요
|
|
</mat-error>
|
|
</mat-form-field>
|
|
<mat-form-field>
|
|
<mat-label>신규 패스워드</mat-label>
|
|
<input
|
|
matInput
|
|
type="password"
|
|
formControlName="newLoginPw"
|
|
#newLoginPw
|
|
/>
|
|
<mat-error>
|
|
신규 패스워드를 입력해 주세요
|
|
</mat-error>
|
|
</mat-form-field>
|
|
<mat-form-field>
|
|
<mat-label>신규 패스워드 확인</mat-label>
|
|
<input
|
|
matInput
|
|
type="password"
|
|
formControlName="newConfirmLoginPw"
|
|
#newConfirmLoginPw
|
|
/>
|
|
<mat-error>
|
|
신규 패스워드 확인을 입력해 주세요
|
|
</mat-error>
|
|
</mat-form-field>
|
|
|
|
<button
|
|
mat-raised-button
|
|
class="submit-button bg-accent-dark"
|
|
aria-label="패스워드 변경"
|
|
[disabled]="changePasswordForm.invalid || !changePasswordBtnEnable"
|
|
(click)="onClickLogin()"
|
|
>
|
|
패스워드 변경
|
|
</button>
|
|
</form>
|
|
</div>
|