This commit is contained in:
2023-08-14 14:36:45 -04:00
commit b5966f98b2
94 changed files with 21124 additions and 0 deletions

View File

@ -0,0 +1,13 @@
<form [formGroup]="form">
<mat-form-field class="w-50">
<mat-label>Name</mat-label>
<input formControlName="name" matInput type="text">
<mat-error *ngIf="getError('name') as error">{{error.key}}</mat-error>
</mat-form-field>
<mat-checkbox formControlName="watch" class="ms-3">Watch for changes</mat-checkbox>
<mat-form-field class="w-100">
<mat-label>Directory</mat-label>
<input formControlName="path" matInput type="text">
<mat-error *ngIf="getError('path') as error">{{error.key}}</mat-error>
</mat-form-field>
</form>