2025-04-26 18:58:47 +00:00
|
|
|
<ng-container>
|
|
|
|
|
<app-header [current_page]="currentPage" height="200px" background_image="/public/img/backgrounds/staff.png"
|
|
|
|
|
[overlay_gradient]="0.5">
|
|
|
|
|
<div class="title" header-content>
|
|
|
|
|
<h1>{{ formTitle }}</h1>
|
|
|
|
|
</div>
|
|
|
|
|
</app-header>
|
2025-05-30 21:41:13 +00:00
|
|
|
<ng-container *ngIf="!type">
|
|
|
|
|
<ng-container *ngFor="let formType of FormType | keyvalue">
|
|
|
|
|
<button mat-raised-button (click)="setFormType(formType.value)">
|
|
|
|
|
{{ formType }}
|
|
|
|
|
</button>
|
|
|
|
|
</ng-container>
|
|
|
|
|
</ng-container>
|
2025-04-26 18:58:47 +00:00
|
|
|
<div>
|
|
|
|
|
<ng-content select="[form-content]"></ng-content>
|
|
|
|
|
</div>
|
|
|
|
|
</ng-container>
|