Files
LLC-Finale/src/app/cookie-banner/cookie-banner.component.html
Ruben Kallinich 4a034b660f change repo
2024-07-11 10:44:44 +02:00

11 lines
289 B
HTML

<div class="cookie-banner" *ngIf="!hasConsent()">
<span>This website uses cookies to enhance your experience. Please accept the use of cookies.</span>
<div>
<a href="/privacy">Privacy Policy</a>
</div>
<div>
<button (click)="giveConsent()">Accept</button>
</div>
</div>