ng-implementation/sae-csc/src/app/shared/navigation/bottom-navigation/bottom-navigation.html
2025-09-02 14:40:47 +02:00

68 lines
3.2 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div class="bottom-navigation">
<nav class="navigation">
<a (click)="togglePrivacyPolicy()" class="nav-item" id="privacy_policy_popup">
privacy policy
</a>
<a class="nav-item">
contact
</a>
</nav>
<div class="fixed-navigation">
<button class="next-step" routerLink="similar-cases">
<span class="label">
Search similar cases
</span>
<span class="pipe">
|
</span>
<i class="ri-arrow-right-line"></i>
</button>
</div>
<!-- Privacy Policy Popup -->
@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 class="title">Privacy Policy</h2>
<p>
Personal Data Protection Policy
</p>
<p>
We are committed to protecting your data in accordance with the General Data Protection Regulation (GDPR).
</p>
<p>
Key Principles: To facilitate the search for similar cases when a customer requests support, Safran Aircraft Engines (www.safran-group.com) processes personal data based on its legitimate interest in saving time when handling customer requests and meeting its commitments regarding response times.
</p>
<p>
The company processes the following personal data of CSC employees, customers, and partners (GE):
Identification data: first name, last name
Professional data: employee ID (for internal staff), email address, phone number, postal address, affiliated company, or any other information contained in email signatures
Connection data: login logs containing employee ID, IP address, actions performed, date and time of connection, technical status (technical error)
User account data comes from the CRM and is retained based on the onboarding and offboarding of CSC employees. This data is only accessible to individuals who need it to perform their duties, including the CSC team, IT service providers, and technical and functional administrators.
</p>
<p>
As part of Safran's legitimate interest in securing its information system by ensuring traceability, login logs are also processed and retained for 3 months; they are only accessible to administrators and the IT security team.
</p>
<p>
Data subjects have the right to access, rectify, erase, restrict, and port their data, as well as the right to object. These rights can be exercised by contacting the Data Protection Officer of Safran Aircraft Engines at: dpo.sae@safrangroup.com.
</p>
<p>
Data subjects may also file a complaint with the French data protection authority (www.cnil.fr).
</p>
<p>
Last updated: March 2025
</p>
</div>
<div class="popup-footer">
<button class="agree-button" (click)="closePrivacyPolicy()">I agree</button>
</div>
</div>
</div>
}
</div>