diff --git a/src/DigitalData.UserManager.API/ClientApp/user_manager_ui/src/app/pages/privacy-policy/privacy-policy.component.html b/src/DigitalData.UserManager.API/ClientApp/user_manager_ui/src/app/pages/privacy-policy/privacy-policy.component.html
new file mode 100644
index 0000000..09f0d73
--- /dev/null
+++ b/src/DigitalData.UserManager.API/ClientApp/user_manager_ui/src/app/pages/privacy-policy/privacy-policy.component.html
@@ -0,0 +1,4 @@
+
\ No newline at end of file
diff --git a/src/DigitalData.UserManager.API/ClientApp/user_manager_ui/src/app/pages/privacy-policy/privacy-policy.component.scss b/src/DigitalData.UserManager.API/ClientApp/user_manager_ui/src/app/pages/privacy-policy/privacy-policy.component.scss
new file mode 100644
index 0000000..e69de29
diff --git a/src/DigitalData.UserManager.API/ClientApp/user_manager_ui/src/app/pages/privacy-policy/privacy-policy.component.spec.ts b/src/DigitalData.UserManager.API/ClientApp/user_manager_ui/src/app/pages/privacy-policy/privacy-policy.component.spec.ts
new file mode 100644
index 0000000..51a0589
--- /dev/null
+++ b/src/DigitalData.UserManager.API/ClientApp/user_manager_ui/src/app/pages/privacy-policy/privacy-policy.component.spec.ts
@@ -0,0 +1,23 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { PrivacyPolicyComponent } from './privacy-policy.component';
+
+describe('PrivacyPolicyComponent', () => {
+ let component: PrivacyPolicyComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async () => {
+ await TestBed.configureTestingModule({
+ imports: [PrivacyPolicyComponent]
+ })
+ .compileComponents();
+
+ fixture = TestBed.createComponent(PrivacyPolicyComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/src/DigitalData.UserManager.API/ClientApp/user_manager_ui/src/app/pages/privacy-policy/privacy-policy.component.ts b/src/DigitalData.UserManager.API/ClientApp/user_manager_ui/src/app/pages/privacy-policy/privacy-policy.component.ts
new file mode 100644
index 0000000..285f97c
--- /dev/null
+++ b/src/DigitalData.UserManager.API/ClientApp/user_manager_ui/src/app/pages/privacy-policy/privacy-policy.component.ts
@@ -0,0 +1,13 @@
+import { Component, Input } from '@angular/core';
+import { PdfViewerModule } from 'ng2-pdf-viewer';
+
+@Component({
+ selector: 'app-privacy-policy',
+ standalone: true,
+ imports: [PdfViewerModule],
+ templateUrl: './privacy-policy.component.html',
+ styleUrl: './privacy-policy.component.scss'
+})
+export class PrivacyPolicyComponent {
+ @Input('pdfSrc') pdfSrc: string = 'pdfSrc';
+}