This repository has been archived by the owner on Jul 25, 2024. It is now read-only.
generated from communitiesuk/funding-service-design-TEMPLATE
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #111 from communitiesuk/FPASF-100-download-confirm…
…ation Download/Email Confirmation Page
- Loading branch information
Showing
3 changed files
with
51 additions
and
0 deletions.
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,31 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block content %} | ||
<div class="govuk-grid-row"> | ||
<div class="govuk-grid-column-two-thirds"> | ||
<div class="govuk-panel govuk-panel--confirmation"> | ||
<h1 class="govuk-panel__title"> | ||
Request received | ||
</h1> | ||
</div> | ||
<h2 class="govuk-heading-m govuk-!-margin-top-7"> | ||
What happens next | ||
</h2> | ||
<p class="govuk-body"> | ||
We will email a link to <span class="govuk-!-font-weight-bold">{{ context["user_email"] }}</span>. | ||
</p> | ||
<p class="govuk-body"> | ||
This may take anything up to 5 minutes to come through to your inbox.</p> | ||
<h2 class="govuk-heading-m"> | ||
If you’ve not recieved the email</h2> | ||
<p class="govuk-body"> | ||
If you cannot see the email in your inbox, check your junk or spam folder. | ||
If you’re still having problems, | ||
<a class="govuk-link govuk-link--no-visited-state" href="{{ url_for ('.download') }}"> | ||
request a new link to download your data</a> or email us at | ||
<a class="govuk-link govuk-link--no-visited-state" href="mailto:{{ config.CONTACT_EMAIL }}">{{ config['CONTACT_EMAIL'] }}</a>. | ||
</p> | ||
</div> | ||
</div> | ||
|
||
{% endblock %} |
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