timemanager/frontend/src/app/schedules/basic-scheduler/basic-scheduler.component.html
2023-10-24 08:20:42 +02:00

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>