|
1 | 1 | <ng-container *ngIf="form">
|
2 | 2 | <form [formGroup]="form">
|
3 |
| - <div class="grid"> |
4 |
| - <mat-form-field appearance="outline"> |
5 |
| - <mat-label>ALR Area Impacted (ha)</mat-label> |
6 |
| - <input |
7 |
| - matInput |
8 |
| - min="0.01" |
9 |
| - mask="separator.5" |
10 |
| - thousandSeparator="," |
11 |
| - separatorLimit="9999999999" |
12 |
| - formControlName="alrArea" |
13 |
| - required |
14 |
| - /> |
15 |
| - </mat-form-field> |
| 3 | + <mat-form-field appearance="outline" class="row"> |
| 4 | + <mat-label>ALR Area Impacted (ha)</mat-label> |
| 5 | + <input |
| 6 | + matInput |
| 7 | + min="0.01" |
| 8 | + mask="separator.5" |
| 9 | + thousandSeparator="," |
| 10 | + separatorLimit="9999999999" |
| 11 | + formControlName="alrArea" |
| 12 | + required |
| 13 | + /> |
| 14 | + </mat-form-field> |
16 | 15 |
|
17 |
| - <mat-form-field appearance="outline" class="date-picker"> |
18 |
| - <mat-label>Expiry Date</mat-label> |
19 |
| - <input |
20 |
| - matInput |
21 |
| - (click)="expiryDatePicker.open()" |
22 |
| - [matDatepicker]="expiryDatePicker" |
23 |
| - formControlName="expiryDate" |
24 |
| - name="date" |
25 |
| - /> |
26 |
| - <mat-datepicker-toggle matSuffix [for]="expiryDatePicker"></mat-datepicker-toggle> |
27 |
| - <mat-datepicker #expiryDatePicker type="date"></mat-datepicker> |
28 |
| - </mat-form-field> |
29 |
| - |
30 |
| - <div class="full-width"> |
31 |
| - <mat-label class="toggle-label">Applicant Type*</mat-label> |
32 |
| - <mat-button-toggle-group |
33 |
| - required |
34 |
| - id="isFirstNation" |
35 |
| - formControlName="applicantType" |
36 |
| - name="isFirstNation" |
37 |
| - [ngClass]="{ |
38 |
| - 'error-field-outlined': !form.controls['applicantType'].valid && form.controls['applicantType'].touched |
39 |
| - }" |
40 |
| - > |
41 |
| - <mat-button-toggle value="Land Owner">Land Owner</mat-button-toggle> |
42 |
| - <mat-button-toggle value="L/FNG Initiated">L/FNG Initiated</mat-button-toggle> |
43 |
| - </mat-button-toggle-group> |
44 |
| - </div> |
| 16 | + <div class="full-width"> |
| 17 | + <mat-label class="toggle-label">Applicant Type*</mat-label> |
| 18 | + <mat-button-toggle-group |
| 19 | + required |
| 20 | + id="isFirstNation" |
| 21 | + formControlName="applicantType" |
| 22 | + name="isFirstNation" |
| 23 | + [ngClass]="{ |
| 24 | + 'error-field-outlined': !form.controls['applicantType'].valid && form.controls['applicantType'].touched |
| 25 | + }" |
| 26 | + > |
| 27 | + <mat-button-toggle value="Land Owner">Land Owner</mat-button-toggle> |
| 28 | + <mat-button-toggle value="L/FNG Initiated">L/FNG Initiated</mat-button-toggle> |
| 29 | + </mat-button-toggle-group> |
45 | 30 | </div>
|
46 | 31 | </form>
|
47 | 32 | </ng-container>
|
0 commit comments