You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
422 B

<h1 mat-dialog-title>New Season</h1>
<div mat-dialog-content>
<p>Title: <input [(ngModel)]="data.title" /></p>
<p>Subtitle: <input [(ngModel)]="data.subtitle" /></p>
<p>Starting Date: <input type="date" [(ngModel)]="data.startDate" /></p>
</div>
<div mat-dialog-actions>
<button mat-button (click)="onCancelClick()">Cancel</button>
<button mat-button color="primary" (click)="onSaveClick()">Save</button>
</div>