ng-implementation/sae-csc/src/app/shared/navigation/bottom-navigation/bottom-navigation.html

56 lines
1.7 KiB
HTML
Raw Normal View History

2025-08-07 16:17:13 +02:00
<div class="bottom-navigation">
<nav class="navigation">
2025-09-02 13:58:22 +02:00
<a (click)="togglePrivacyPolicy()" class="nav-item" id="privacy_policy_popup">
2025-08-07 16:17:13 +02:00
privacy policy
</a>
<a class="nav-item">
contact
</a>
</nav>
<div class="fixed-navigation">
<button class="next-step" routerLink="similar-cases">
2025-08-22 12:52:30 +02:00
<span class="label">
2025-08-07 16:17:13 +02:00
Search similar cases
2025-08-22 12:52:30 +02:00
</span>
<span class="pipe">
|
</span>
<i class="ri-arrow-right-line"></i>
2025-08-07 16:17:13 +02:00
</button>
</div>
2025-09-01 18:29:32 +02:00
<!-- Privacy Policy Popup -->
2025-09-02 13:58:22 +02:00
@if (showPrivacyPolicy) {
<div class="privacy-policy-popup">
<div class="popup-overlay" (click)="closePrivacyPolicy()"></div>
<div class="popup-content">
<button class="close-button" (click)="closePrivacyPolicy()">
<span>×</span>
</button>
<div class="popup-body">
<h2>Privacy Policy</h2>
<p>
This privacy policy explains how we collect, use, and protect your personal information when you use our
services.
</p>
<p>
We collect information to provide better services to all our users. This includes information you provide to
us, such as your name, email address, and other personal details.
</p>
<p>
We use this information to provide, maintain, and improve our services, develop new ones, and protect our
users.
</p>
<p>
We will not share your personal information with anyone except as described in this Privacy Policy.
</p>
</div>
<div class="popup-footer">
<button class="agree-button" (click)="closePrivacyPolicy()">I agree</button>
</div>
2025-09-01 18:29:32 +02:00
</div>
</div>
2025-09-02 13:58:22 +02:00
}
2025-08-07 16:17:13 +02:00
</div>