-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Claim-specific copy to generic error page
- Loading branch information
Showing
3 changed files
with
6 additions
and
3 deletions.
There are no files selected for viewing
6 changes: 3 additions & 3 deletions
6
dotnet-authserver/src/TeacherIdentity.AuthServer/Views/Shared/GenericError.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
@{ | ||
ViewBag.Title = "Sorry, there is a problem with the service"; | ||
ViewBag.Title = "Sorry, there is a problem with the DfE Identity service"; | ||
} | ||
|
||
<div class="govuk-grid-row"> | ||
<div class="govuk-grid-column-two-thirds"> | ||
<h1 class="govuk-heading-l">Sorry, there is a problem with the service</h1> | ||
<p>Try again later.</p> | ||
<h1 class="govuk-heading-l">@ViewBag.Title</h1> | ||
<vc:client-scoped-partial view-name="_Error.{0}" /> | ||
</div> | ||
</div> |
2 changes: 2 additions & 0 deletions
2
dotnet-authserver/src/TeacherIdentity.AuthServer/Views/Shared/_Error.Claim.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<p>Try again later if you would like to sign in or set up a DfE Identity account.</p> | ||
<p>You can still <a href="https://www.gov.uk/government/collections/additional-payments-for-teaching-eligibility-and-payment-details">check if you’re eligible for any additional payments and apply for them</a>.</p> |
1 change: 1 addition & 0 deletions
1
dotnet-authserver/src/TeacherIdentity.AuthServer/Views/Shared/_Error.Default.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<p>Try again later.</p> |