33 lines
763 B
HTML
33 lines
763 B
HTML
<mat-card class="confirm-card mat-elevation-z">
|
|
<mat-card-header>
|
|
<mat-card-title>
|
|
쪽지 보내기
|
|
</mat-card-title>
|
|
</mat-card-header>
|
|
<mat-card-content>
|
|
새쪽지를 보내요.
|
|
|
|
<ucap-message-editor></ucap-message-editor>
|
|
</mat-card-content>
|
|
<mat-card-actions class="button-farm flex-row">
|
|
<button mat-stroked-button (click)="onClickTest()" class="mat-primary">
|
|
테스트
|
|
</button>
|
|
<button
|
|
mat-stroked-button
|
|
(click)="onClickChoice(false)"
|
|
class="mat-primary"
|
|
>
|
|
취소
|
|
</button>
|
|
<button
|
|
mat-flat-button
|
|
[disabled]="getBtnValid()"
|
|
(click)="onClickChoice(true)"
|
|
class="mat-primary"
|
|
>
|
|
보내기
|
|
</button>
|
|
</mat-card-actions>
|
|
</mat-card>
|