Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update content for users who weren't automatically matched #790

Merged
merged 1 commit into from
Apr 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>You’ve 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>You’ve 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
Loading