diff --git a/src/app/components/shared/_dialogs/help-page/help-page.component.html b/src/app/components/shared/_dialogs/help-page/help-page.component.html
index fa4c0be2eb4dd6ae535a130cc8d49945cc98de23..369ecc898a09ca984be5535d1df9a72685f41c7e 100644
--- a/src/app/components/shared/_dialogs/help-page/help-page.component.html
+++ b/src/app/components/shared/_dialogs/help-page/help-page.component.html
@@ -16,6 +16,14 @@
   ></app-dialog-action-buttons>
 
 
+  <app-dialog-action-buttons
+    buttonsLabelSection="cookies"
+    confirmButtonLabel="accept"
+    [confirmButtonType]=confirmButtonType
+    [confirmButtonClickAction]="buildConfirmActionCallback()"
+  ></app-dialog-action-buttons>
+
+
   <div class="visually-hidden">
     <div id="close-label">{{ 'help.close-label'| translate }}</div>
   </div>
diff --git a/src/app/components/shared/_dialogs/help-page/help-page.component.ts b/src/app/components/shared/_dialogs/help-page/help-page.component.ts
index 33531ffbad3122d6bec0036b559258ef89008cf4..2b057c137d4fc6a54277bba2f229c8611a3b9cf1 100644
--- a/src/app/components/shared/_dialogs/help-page/help-page.component.ts
+++ b/src/app/components/shared/_dialogs/help-page/help-page.component.ts
@@ -1,6 +1,6 @@
 import { Component, OnInit } from '@angular/core';
 import { DialogConfirmActionButtonType } from '../../dialog/dialog-action-buttons/dialog-action-buttons.component';
-import { MatDialogRef, MatDialogTitle } from '@angular/material';
+import { MatDialogRef } from '@angular/material';
 
 @Component({
   selector: 'app-help',