Plik: appcomponetnhtml.txt
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" id="ctrId" (change)="toggleCategory('flowers')" [checked]="categories.flowers">
<label class="form-check-label" for="ctrId">Kwiaty</label>
</div>
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" id="ctrId2" (change)="toggleCategory('animals')" [checked]="categories.animals">
<label class="form-check-label" for="ctrId2">Zwierzęta</label>
</div>
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" id="ctrId3" (change)="toggleCategory('cars')" [checked]="categories.cars">
<label class="form-check-label" for="ctrId3">Samochody</label>
</div>
<div *ngFor="let image of getFilteredImages()">
<div class="image-container">
<img [src]="'assets/' + image.filename" [alt]="image.alt" class="img-thumbnail">
<p>Ilość pobrań: {{ image.downloads }}</p>
<button (click)="incrementDownloads(image.id)">Zwiększ pobranie</button>
</div>
</div>
Darmowy hosting zapewnia PRV.PL