12 lines
419 B
HTML
12 lines
419 B
HTML
<div class="scheduler-container">
|
|
<mat-form-field>
|
|
<input matInput [matDatepicker]="picker" [formControl]="dateCtrl">
|
|
<mat-hint>MM/DD/YYYY</mat-hint>
|
|
<mat-datepicker-toggle matIconSuffix [for]="picker"></mat-datepicker-toggle>
|
|
<mat-datepicker #picker></mat-datepicker>
|
|
</mat-form-field>
|
|
|
|
<button class="scheduleBtn" mat-raised-button color="primary" (click)="schedule()">Schedule</button>
|
|
</div>
|
|
|