From 4d49fcf4de27505abf2643e8bb3c26b62266ede8 Mon Sep 17 00:00:00 2001 From: KKAYFISH Date: Wed, 27 Mar 2024 13:54:17 -0700 Subject: [PATCH] CSRS-488: Added underline and Terms of Use to Footer --- .../child-application-question.component.html | 2 +- .../shared/components/footer/footer.component.html | 4 ++++ .../shared/components/footer/footer.component.ts | 14 +++++++++++++- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/src/frontend/csrs-portal/src/app/components/child-application-question/child-application-question.component.html b/src/frontend/csrs-portal/src/app/components/child-application-question/child-application-question.component.html index 99efe0aa..082df297 100644 --- a/src/frontend/csrs-portal/src/app/components/child-application-question/child-application-question.component.html +++ b/src/frontend/csrs-portal/src/app/components/child-application-question/child-application-question.component.html @@ -663,7 +663,7 @@

Child Support Recalculation Application

Please review and make sure you understand the following conditions of enrolment and Service Portal Terms of Use they link to.

- If you proceed, you will be deemed to have agreed to them. If you do not agree, you are not entitled to use this electronic service. + If you proceed, you will be deemed to have agreed to them. If you do not agree, you are not entitled to use this electronic service.

I understand, acknowledge and agree that: diff --git a/src/frontend/csrs-portal/src/app/shared/components/footer/footer.component.html b/src/frontend/csrs-portal/src/app/shared/components/footer/footer.component.html index 1da82057..230bd500 100644 --- a/src/frontend/csrs-portal/src/app/shared/components/footer/footer.component.html +++ b/src/frontend/csrs-portal/src/app/shared/components/footer/footer.component.html @@ -26,6 +26,10 @@

  • Contact Us
  • + | +
  • + Terms of Use +
  • diff --git a/src/frontend/csrs-portal/src/app/shared/components/footer/footer.component.ts b/src/frontend/csrs-portal/src/app/shared/components/footer/footer.component.ts index c7a7ec50..15739958 100644 --- a/src/frontend/csrs-portal/src/app/shared/components/footer/footer.component.ts +++ b/src/frontend/csrs-portal/src/app/shared/components/footer/footer.component.ts @@ -1,4 +1,7 @@ import { Component, OnInit } from '@angular/core'; +import { MatDialog, MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog'; +import { ModalDialogHtmlComponent } from '../../../components/modal-dialog-htmlcontent/modal-dialog-htmlcontent.component'; + @Component({ selector: 'app-footer', @@ -7,9 +10,18 @@ import { Component, OnInit } from '@angular/core'; }) export class FooterComponent implements OnInit { - constructor() { } + constructor(public dialog: MatDialog,) { } ngOnInit(): void { } + showTermsOfUse(): void { + const dialogRef = this.dialog.open(ModalDialogHtmlComponent, { + width: '750px', + data: '', + }); + dialogRef.afterClosed().subscribe(result => { + //this.logger.info(`Dialog result: ${result}`); + }); + } }