diff --git a/src/components/contact-us/contact-us-controller.ts b/src/components/contact-us/contact-us-controller.ts index 088adcdde0..2b758e0030 100644 --- a/src/components/contact-us/contact-us-controller.ts +++ b/src/components/contact-us/contact-us-controller.ts @@ -502,6 +502,10 @@ export function getQuestionsFromFormTypeForMessageBody( "pages.contactUsQuestions.accountNotFound.section2.header", { lng: "en" } ), + serviceTryingToUse: req.t( + "pages.contactUsQuestions.serviceTryingToUse.header", + { lng: "en" } + ), }, anotherProblem: { issueDescription: req.t( @@ -512,6 +516,10 @@ export function getQuestionsFromFormTypeForMessageBody( "pages.contactUsQuestions.anotherProblem.section2.header", { lng: "en" } ), + serviceTryingToUse: req.t( + "pages.contactUsQuestions.serviceTryingToUse.header", + { lng: "en" } + ), }, authenticatorApp: { issueDescription: req.t( @@ -522,6 +530,10 @@ export function getQuestionsFromFormTypeForMessageBody( "pages.contactUsQuestions.authenticatorApp.section2.header", { lng: "en" } ), + serviceTryingToUse: req.t( + "pages.contactUsQuestions.serviceTryingToUse.header", + { lng: "en" } + ), }, emailSubscription: { issueDescription: req.t( @@ -538,6 +550,10 @@ export function getQuestionsFromFormTypeForMessageBody( "pages.contactUsQuestions.forgottenPassword.section1.header", { lng: "en" } ), + serviceTryingToUse: req.t( + "pages.contactUsQuestions.serviceTryingToUse.header", + { lng: "en" } + ), }, invalidSecurityCode: { moreDetailDescription: req.t( @@ -548,6 +564,10 @@ export function getQuestionsFromFormTypeForMessageBody( "pages.contactUsQuestions.invalidSecurityCode.section1.header", { lng: "en" } ), + serviceTryingToUse: req.t( + "pages.contactUsQuestions.serviceTryingToUse.header", + { lng: "en" } + ), }, noPhoneNumberAccess: { optionalDescription: req.t( @@ -558,6 +578,10 @@ export function getQuestionsFromFormTypeForMessageBody( "pages.contactUsQuestions.noPhoneNumberAccess.section1.header", { lng: "en" } ), + serviceTryingToUse: req.t( + "pages.contactUsQuestions.serviceTryingToUse.header", + { lng: "en" } + ), }, noSecurityCode: { moreDetailDescription: req.t( @@ -568,6 +592,10 @@ export function getQuestionsFromFormTypeForMessageBody( "pages.contactUsQuestions.noSecurityCode.section1.header", { lng: "en" } ), + serviceTryingToUse: req.t( + "pages.contactUsQuestions.serviceTryingToUse.header", + { lng: "en" } + ), }, signInPhoneNumberIssue: { issueDescription: req.t( @@ -582,6 +610,10 @@ export function getQuestionsFromFormTypeForMessageBody( "pages.contactUsQuestions.signInPhoneNumberIssue.section3.header", { lng: "en" } ), + serviceTryingToUse: req.t( + "pages.contactUsQuestions.serviceTryingToUse.header", + { lng: "en" } + ), }, signingInProblem: { issueDescription: req.t( diff --git a/src/components/contact-us/questions/_account-creation-problem-questions.njk b/src/components/contact-us/questions/_account-creation-problem-questions.njk index 70cb0d4a73..c3c37cd8e2 100644 --- a/src/components/contact-us/questions/_account-creation-problem-questions.njk +++ b/src/components/contact-us/questions/_account-creation-problem-questions.njk @@ -39,6 +39,8 @@ } if (errors['issueDescription']) }) }} +{% include "contact-us/questions/_service-trying-to-use.njk" %} + {{ govukWarningText({ text:'pages.contactUsQuestions.personalInformation.paragraph1' | translateEnOnly, iconFallbackText: "Warning" diff --git a/src/components/contact-us/questions/_account-not-found-questions.njk b/src/components/contact-us/questions/_account-not-found-questions.njk index 451ff941e6..ae4cc2f1c2 100644 --- a/src/components/contact-us/questions/_account-not-found-questions.njk +++ b/src/components/contact-us/questions/_account-not-found-questions.njk @@ -65,6 +65,8 @@ } if (errors['optionalDescription']) }) }} +{% include "contact-us/questions/_service-trying-to-use.njk" %} + {{ govukWarningText({ text:'pages.contactUsQuestions.personalInformation.paragraph1' | translateEnOnly, iconFallbackText: "Warning" diff --git a/src/components/contact-us/questions/_another-problem-questions.njk b/src/components/contact-us/questions/_another-problem-questions.njk index f4f131d988..37b069de64 100644 --- a/src/components/contact-us/questions/_another-problem-questions.njk +++ b/src/components/contact-us/questions/_another-problem-questions.njk @@ -62,6 +62,8 @@ } if (errors['additionalDescription']) }) }} +{% include "contact-us/questions/_service-trying-to-use.njk" %} + {{ govukWarningText({ text:'pages.contactUsQuestions.personalInformation.paragraph1' | translateEnOnly, iconFallbackText: "Warning" diff --git a/src/components/contact-us/questions/_authenticator-app-problem.njk b/src/components/contact-us/questions/_authenticator-app-problem.njk index 76c7e0625e..fd404aad87 100644 --- a/src/components/contact-us/questions/_authenticator-app-problem.njk +++ b/src/components/contact-us/questions/_authenticator-app-problem.njk @@ -62,6 +62,8 @@ } if (errors['additionalDescription']) }) }} +{% include "contact-us/questions/_service-trying-to-use.njk" %} + {{ govukWarningText({ text:'pages.contactUsQuestions.personalInformation.paragraph1' | translateEnOnly, iconFallbackText: "Warning" diff --git a/src/components/contact-us/questions/_forgotten-password-questions.njk b/src/components/contact-us/questions/_forgotten-password-questions.njk index d7c1c352d2..465c3d73b4 100644 --- a/src/components/contact-us/questions/_forgotten-password-questions.njk +++ b/src/components/contact-us/questions/_forgotten-password-questions.njk @@ -39,6 +39,8 @@ } if (errors['optionalDescription']) }) }} +{% include "contact-us/questions/_service-trying-to-use.njk" %} + {{ govukWarningText({ text:'pages.contactUsQuestions.personalInformation.paragraph1' | translateEnOnly, iconFallbackText: "Warning" diff --git a/src/components/contact-us/questions/_invalid-security-code-questions.njk b/src/components/contact-us/questions/_invalid-security-code-questions.njk index 3e37d4c7bc..320bccb6b8 100644 --- a/src/components/contact-us/questions/_invalid-security-code-questions.njk +++ b/src/components/contact-us/questions/_invalid-security-code-questions.njk @@ -42,6 +42,8 @@ } if (errors['moreDetailDescription']) }) }} +{% include "contact-us/questions/_service-trying-to-use.njk" %} + {{ govukWarningText({ text:'pages.contactUsQuestions.personalInformation.paragraph1' | translateEnOnly, iconFallbackText: "Warning" diff --git a/src/components/contact-us/questions/_no-phone-number-access-questions.njk b/src/components/contact-us/questions/_no-phone-number-access-questions.njk index adb632b2a0..e9e8e34f14 100644 --- a/src/components/contact-us/questions/_no-phone-number-access-questions.njk +++ b/src/components/contact-us/questions/_no-phone-number-access-questions.njk @@ -42,6 +42,8 @@ } if (errors['optionalDescription']) }) }} +{% include "contact-us/questions/_service-trying-to-use.njk" %} + {{ govukWarningText({ text:'pages.contactUsQuestions.personalInformation.paragraph1' | translateEnOnly, iconFallbackText: "Warning" diff --git a/src/components/contact-us/questions/_no-security-code-questions.njk b/src/components/contact-us/questions/_no-security-code-questions.njk index b0a513ce1e..18d387e319 100644 --- a/src/components/contact-us/questions/_no-security-code-questions.njk +++ b/src/components/contact-us/questions/_no-security-code-questions.njk @@ -42,6 +42,8 @@ } if (errors['moreDetailDescription']) }) }} +{% include "contact-us/questions/_service-trying-to-use.njk" %} + {{ govukWarningText({ text:'pages.contactUsQuestions.personalInformation.paragraph1' | translateEnOnly, iconFallbackText: "Warning" diff --git a/src/components/contact-us/questions/_signing-in-problem-questions.njk b/src/components/contact-us/questions/_signing-in-problem-questions.njk index 6edeb160bc..40f92dd83a 100644 --- a/src/components/contact-us/questions/_signing-in-problem-questions.njk +++ b/src/components/contact-us/questions/_signing-in-problem-questions.njk @@ -39,6 +39,8 @@ } if (errors['issueDescription']) }) }} +{% include "contact-us/questions/_service-trying-to-use.njk" %} + {{ govukWarningText({ text:'pages.contactUsQuestions.personalInformation.paragraph1' | translateEnOnly, iconFallbackText: "Warning" diff --git a/src/components/contact-us/questions/_technical-error-questions.njk b/src/components/contact-us/questions/_technical-error-questions.njk index 0eec2d8330..56f3f55cfb 100644 --- a/src/components/contact-us/questions/_technical-error-questions.njk +++ b/src/components/contact-us/questions/_technical-error-questions.njk @@ -62,6 +62,8 @@ } if (errors['additionalDescription']) }) }} +{% include "contact-us/questions/_service-trying-to-use.njk" %} + {{ govukWarningText({ text:'pages.contactUsQuestions.personalInformation.paragraph1' | translateEnOnly, iconFallbackText: "Warning"