-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This adds an error page which users are seen if they receive a 429 error, meaning they've triggered our rate limiting checks. This was missed in f225a5a.
- Loading branch information
1 parent
da2513a
commit 270325c
Showing
3 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
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
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,19 @@ | ||
<%= content_for :page_title, "Sorry, there’s a problem with the service" %> | ||
|
||
<div class="govuk-grid-row"> | ||
<div class="govuk-grid-column-two-thirds"> | ||
<h1 class="govuk-heading-l">Sorry, there’s a problem with the service</h1> | ||
|
||
<p class="govuk-body">Try again later.</p> | ||
|
||
<p class="govuk-body"> | ||
You’re seeing this message as you’ve tried to access this page repeatedly, | ||
please wait a few moments before trying again. | ||
</p> | ||
|
||
<p class="govuk-body"> | ||
If you have any questions, please email us at | ||
<a class="govuk-link" href="mailto:<%= t('service.email') %>"><%= t('service.email') %></a>. | ||
</p> | ||
</div> | ||
</div> |
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