-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- add session-timeout-warning component and saveExitFormContent property to hof.settings.json to customise save-and-exit page - add /session-timeout step to common/index.js - amend static pages to not show session timeout popup - remove duplicate redundant session-timeout and privacy files, - add exit step for start, feedback and verify pages
- Loading branch information
1 parent
92e967e
commit 1f25298
Showing
21 changed files
with
167 additions
and
194 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
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
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
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,6 +1,13 @@ | ||
{{<partials-page}} | ||
{{$page-content}} | ||
{{<layout}} | ||
|
||
{{$propositionHeader}}{{/propositionHeader}} | ||
|
||
{{$header}} | ||
{{#t}}pages.support-organisations.header{{/t}} | ||
{{/header}} | ||
|
||
{{$content}} | ||
<h1 class="govuk-heading-xl">{{#t}}pages.support-organisations.header{{/t}}</h1> | ||
{{#markdown}}support-organisations{{/markdown}} | ||
{{/page-content}} | ||
{{/partials-page}} | ||
{{/content}} | ||
{{/layout}} |
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 |
---|---|---|
|
@@ -14,6 +14,7 @@ module.exports = { | |
}, | ||
'/complete': { | ||
backLink: false | ||
} | ||
}, | ||
'/exit': {} | ||
} | ||
}; |
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,16 +1,23 @@ | ||
{{<partials-page}} | ||
{{$page-content}} | ||
<div class="govuk-grid-row"> | ||
<div class="govuk-panel govuk-panel--confirmation"> | ||
<h1 class="govuk-panel__title"> | ||
{{#t}}pages.complete.panel-title{{/t}} | ||
</h1> | ||
{{<layout}} | ||
|
||
{{$propositionHeader}}{{/propositionHeader}} | ||
|
||
{{$header}} | ||
{{#t}}pages.complete.panel-title{{/t}} | ||
{{/header}} | ||
|
||
{{$content}} | ||
<div class="govuk-grid-row"> | ||
<div class="govuk-panel govuk-panel--confirmation"> | ||
<h1 class="govuk-panel__title"> | ||
{{#t}}pages.complete.panel-title{{/t}} | ||
</h1> | ||
</div> | ||
<p> | ||
<a href="/start"> | ||
{{#t}}pages.complete.paragraph-1{{/t}} | ||
</a>. | ||
</p> | ||
</div> | ||
<p> | ||
<a href="/start"> | ||
{{#t}}pages.complete.paragraph-1{{/t}} | ||
</a>. | ||
</p> | ||
</div> | ||
{{/page-content}} | ||
{{/partials-page}} | ||
{{/content}} | ||
{{/layout}} |
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,4 @@ | ||
{ | ||
"header": "Your report has been saved", | ||
"title": "Your report has been saved" | ||
} |
This file was deleted.
Oops, something went wrong.
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,7 +1,13 @@ | ||
{{<partials-page}} | ||
{{$page-content}} | ||
{{<layout}} | ||
|
||
{{$propositionHeader}}{{/propositionHeader}} | ||
|
||
{{$header}} | ||
{{#t}}pages.save-and-exit.header{{/t}} | ||
{{/header}} | ||
{{$content}} | ||
<p>You have until the {{reportExpiration}} to update or submit your report.</p> | ||
<p>We have sent a confirmation email to: {{userEmail}}</p> | ||
<p>You can return to your report at any time via the report modern slavery <a class="govuk-link" href="/start">start page on GOV.UK.</a></p> | ||
{{/page-content}} | ||
{{/partials-page}} | ||
{{/content}} | ||
{{/layout}} |
This file was deleted.
Oops, something went wrong.
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,8 +1,15 @@ | ||
{{<partials-page}} | ||
{{<layout}} | ||
|
||
{{$propositionHeader}}{{/propositionHeader}} | ||
|
||
{{$header}} | ||
{{#t}}pages.token-invalid.header{{/t}} | ||
{{/header}} | ||
|
||
{{$back}} | ||
<a class="govuk-back-link" href="{{#url}}{{backLink}}{{/url}}">{{#t}}buttons.back{{/t}}</a> | ||
{{/back}} | ||
{{$page-content}} | ||
{{$content}} | ||
{{#markdown}}token-invalid{{/markdown}} | ||
{{/page-content}} | ||
{{/partials-page}} | ||
{{/content}} | ||
{{/layout}} |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.