Skip to content

Commit

Permalink
Update content for users who weren't automatically matched (#790)
Browse files Browse the repository at this point in the history
  • Loading branch information
gunndabad authored Apr 10, 2024
1 parent 3f8ec6e commit 3d5a9aa
Showing 1 changed file with 20 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,16 @@
else if (Model.TrnVerificationElevationSuccessful == false && Model.TrnRequirementType == TrnRequirementType.Required)
{
<p>Youve signed in to your DfE Identity account but some of the additional information you gave could not be verified.</p>
<p>Email <a href="mailto:@(Configuration["SupportEmail"])">@(Configuration["SupportEmail"])</a> for help.</p>
<p>
Email <a href="mailto:@(Configuration["SupportEmail"])">@(Configuration["SupportEmail"])</a> for help.
You should include your:
<ul class="govuk-list">
<li>name</li>
<li>date of birth</li>
<li>National Insurance number - if you know it</li>
<li>teacher reference number (TRN) - if you know it</li>
</ul>
</p>
}
else if (Model.TrnVerificationElevationSuccessful == false && Model.TrnRequirementType == TrnRequirementType.Optional)
{
Expand All @@ -46,7 +55,16 @@
else if (Model.TrnMatchPolicy == TrnMatchPolicy.Strict && Model.Trn is null && Model.TrnRequirementType == TrnRequirementType.Required)
{
<p>Youve created a DfE Identity account but some of the information you gave could not be verified.</p>
<p>Email <a href="mailto:@(Configuration["SupportEmail"])">@(Configuration["SupportEmail"])</a> for help.</p>
<p>
Email <a href="mailto:@(Configuration["SupportEmail"])">@(Configuration["SupportEmail"])</a> for help.
You should include your:
<ul class="govuk-list">
<li>name</li>
<li>date of birth</li>
<li>National Insurance number - if you know it</li>
<li>teacher reference number (TRN) - if you know it</li>
</ul>
</p>
}
else if (Model.TrnRequirementType == TrnRequirementType.Required)
{
Expand Down

0 comments on commit 3d5a9aa

Please sign in to comment.