From 57be8f5eba5b66f9da5b38217757afe8bc42462f Mon Sep 17 00:00:00 2001
From: James Gunn
Date: Wed, 10 Apr 2024 15:51:22 +0100
Subject: [PATCH] Update content for users who weren't automatically matched
---
.../Pages/SignIn/Complete.cshtml | 22 +++++++++++++++++--
1 file changed, 20 insertions(+), 2 deletions(-)
diff --git a/dotnet-authserver/src/TeacherIdentity.AuthServer/Pages/SignIn/Complete.cshtml b/dotnet-authserver/src/TeacherIdentity.AuthServer/Pages/SignIn/Complete.cshtml
index 4dccef1e2..e61cc155f 100644
--- a/dotnet-authserver/src/TeacherIdentity.AuthServer/Pages/SignIn/Complete.cshtml
+++ b/dotnet-authserver/src/TeacherIdentity.AuthServer/Pages/SignIn/Complete.cshtml
@@ -37,7 +37,16 @@
else if (Model.TrnVerificationElevationSuccessful == false && Model.TrnRequirementType == TrnRequirementType.Required)
{
You’ve signed in to your DfE Identity account but some of the additional information you gave could not be verified.
- Email @(Configuration["SupportEmail"]) for help.
+
+ Email @(Configuration["SupportEmail"]) for help.
+ You should include your:
+
+ - name
+ - date of birth
+ - National Insurance number - if you know it
+ - teacher reference number (TRN) - if you know it
+
+
}
else if (Model.TrnVerificationElevationSuccessful == false && Model.TrnRequirementType == TrnRequirementType.Optional)
{
@@ -46,7 +55,16 @@
else if (Model.TrnMatchPolicy == TrnMatchPolicy.Strict && Model.Trn is null && Model.TrnRequirementType == TrnRequirementType.Required)
{
You’ve created a DfE Identity account but some of the information you gave could not be verified.
- Email @(Configuration["SupportEmail"]) for help.
+
+ Email @(Configuration["SupportEmail"]) for help.
+ You should include your:
+
+ - name
+ - date of birth
+ - National Insurance number - if you know it
+ - teacher reference number (TRN) - if you know it
+
+
}
else if (Model.TrnRequirementType == TrnRequirementType.Required)
{