-
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.
split add change address pages in rh fulfilment flows
- Loading branch information
Showing
3 changed files
with
64 additions
and
8 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,60 @@ | ||
--- | ||
title: Version 1 | ||
project: End to end prototype | ||
globalcss: false | ||
layout: eq-default-extras | ||
footer: census-transactional | ||
assetPrefixUrl: https://sdc-global-design-patterns.netlify.com | ||
hideSaveLater: true | ||
logoUrl: ../home | ||
--- | ||
|
||
<link rel="stylesheet" href="../style.css"/> | ||
<div class="page__subheader"> | ||
<div class="container"> | ||
<a class="js-previous-link" href="../hub">Previous</a> | ||
</div> | ||
</div> | ||
|
||
<div class="page__container container"> | ||
<div class="grid grid--reverse"> | ||
<div class="grid__col col-4@m"> | ||
<!--{% include navigation.html | ||
items=site.data.your-household-v6.yourHouseholdV4_navigationItemsPersonalDetails | ||
nav-title-id="section-individual" %}--> | ||
</div> | ||
<div class="grid__col col-8@l"> | ||
<main role="main" id="main" class="page__main"> | ||
<div class="group"> | ||
<div class="block"> | ||
<section class="section"> | ||
<h1 class="u-fs-xl">Register an address</h1> | ||
|
||
<p>If you can’t find your address, it may not be registered on our system. | ||
</p> | ||
<p>To register your address, we need you to get in touch. You can call us free on 0800 141 2021 or <a href="#">choose another way to contact us</a>. | ||
</p> | ||
|
||
</section> | ||
</div> | ||
</div> | ||
</main> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<script src='/js/compiled/end-to-end/bundle.js'></script> | ||
|
||
<script> | ||
storageAPI = window.ONS.storage, | ||
urlParams = new URLSearchParams(window.location.search), | ||
previousPage = urlParams.get('previous'), | ||
currentJourney = urlParams.get('current-journey'), | ||
currentPage = 'address-register'; | ||
|
||
function updateAllLinks() { | ||
$('.js-previous-link').attr('href', '../' + previousPage + '?' + 'previous=' + currentPage + '&' + 'current-journey=' + currentJourney); | ||
} | ||
|
||
$(updateAllLinks); | ||
</script> |
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