wickes-css2 2.98.0-develop.1 → 2.98.0-develop.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Readme.md +3 -3
- package/build/css/category-main.css +1 -1
- package/build/css/components/checkout-payment-details-v2.css +1 -1
- package/build/css/components/global-search.css +1 -1
- package/build/css/components/loader.css +1 -1
- package/build/css/components/price-block-v2-critical.css +1 -1
- package/build/css/components/price-block-v2.css +1 -1
- package/build/css/homepage-main.css +1 -1
- package/build/css/main.css +1 -1
- package/build/css/my-account-main-v2.css +1 -1
- package/build/css/my-account-main.css +1 -1
- package/build/css/pages/checkout-new.css +1 -1
- package/build/css/pages/checkout.css +1 -1
- package/build/css/pages/my-account-v2.css +1 -1
- package/build/css/pages/page_home.css +1 -1
- package/build/css/pages/page_my-order.css +1 -1
- package/build/css/pages/page_my-orders.css +1 -1
- package/build/css/pages/page_wismo-details.css +1 -1
- package/build/css/pdp-main-before-combine.css +1 -1
- package/build/css/pdp-main-critical.css +1 -1
- package/build/css/pdp-main-non-critical.css +1 -1
- package/build/css/pdp-main.css +1 -1
- package/build/css/plp-main.css +1 -1
- package/build/css/store-locator-main.css +1 -1
- package/build/img/billie-logo.svg +4 -0
- package/build/img/billie-modal.svg +4 -0
- package/build/img/billie-pdp.svg +11 -0
- package/build/img/billie-spinner.svg +5 -0
- package/build/img/billie.svg +4 -0
- package/build/img/calm-primary-logo.png +0 -0
- package/build/img/payment/checkout/billie.svg +4 -0
- package/build/img/payment/footer/billie.svg +4 -0
- package/build/js/basket.min.js +2 -2
- package/build/js/bundle.min.js +1 -1
- package/build/js/checkout.min.js +1 -1
- package/build/js/emulation.min.js +23 -33
- package/build/js/general.bundle.min.js +1 -1
- package/build/js/merged-checkout.min.js +1 -1
- package/build/js/page/basket-v2.js +16 -7
- package/build/js/page/billie-business-type.js +34 -0
- package/build/js/page/checkout-payment-details.js +8 -0
- package/build/js/page/components/charity.js +58 -43
- package/build/js/page/components/modal-observer.js +51 -0
- package/build/js/page/smart-banner.js +4 -1
- package/build/js/pdp.bundle.min.js +1 -1
- package/build/js/plp.bundle.min.js +1 -1
- package/build/js/project-list.min.js +1 -1
- package/build/js/smart-banner.min.js +1 -1
- package/package.json +1 -9
- package/src/components/address-billie.hbs +42 -0
- package/src/components/address-postcode-look-up.hbs +2 -2
- package/src/components/basket-charity-donations-new.hbs +40 -0
- package/src/components/billie-modal.hbs +41 -0
- package/src/components/billie-online-messaging.hbs +14 -0
- package/src/components/checkout-edit-billing-address.hbs +20 -6
- package/src/components/checkout-payment-details-v2.hbs +94 -55
- package/src/components/checkout-payment-info-block.hbs +49 -0
- package/src/components/checkout-payment-option.hbs +40 -0
- package/src/components/checkout_payment-new.hbs +10 -1
- package/src/components/donation-cart-new.hbs +38 -0
- package/src/components/modal.hbs +4 -1
- package/src/components/my-account/active-orders/list-orders.hbs +1 -1
- package/src/components/my-account/active-orders/order.hbs +2 -0
- package/src/components/my-account/active-orders/payment-status.hbs +17 -0
- package/src/components/my-account/payment-status.hbs +19 -0
- package/src/components/my-account/saving-totaliser.hbs +52 -0
- package/src/components/order-summary.hbs +3 -0
- package/src/components/payment-loader.hbs +59 -21
- package/src/components/payments-checkout-v2.hbs +12 -6
- package/src/components/payments-checkout.hbs +6 -0
- package/src/components/payments.hbs +10 -4
- package/src/components/price-block-v2.hbs +13 -8
- package/src/components/smart-banner.hbs +1 -1
- package/src/components/wismo-payment.hbs +16 -0
- package/src/data/data_shopping-cart-v2.json +51 -0
- package/src/data/data_wismo.json +53 -0
- package/src/data/my-account/data_my-account.json +57 -0
- package/src/elements/radiobutton.hbs +7 -0
- package/src/img/billie-logo.svg +4 -0
- package/src/img/billie-modal.svg +4 -0
- package/src/img/billie-pdp.svg +11 -0
- package/src/img/billie-spinner.svg +5 -0
- package/src/img/billie.svg +4 -0
- package/src/img/calm-primary-logo.png +0 -0
- package/src/img/payment/checkout/billie.svg +4 -0
- package/src/img/payment/footer/billie.svg +4 -0
- package/src/js/components/general/main-nav.js +6 -282
- package/src/js/components/general/notification.js +1 -1
- package/src/js/emulation/paymentLoader.js +22 -11
- package/src/js/page/basket-v2.js +16 -7
- package/src/js/page/billie-business-type.js +34 -0
- package/src/js/page/checkout-payment-details.js +8 -0
- package/src/js/page/components/charity.js +58 -43
- package/src/js/page/components/modal-observer.js +51 -0
- package/src/js/page/smart-banner.js +4 -1
- package/src/layouts/base.hbs +0 -3
- package/src/layouts/bicester-kitchen.hbs +0 -3
- package/src/layouts/my-account.hbs +0 -3
- package/src/page_basket-billie.html +54 -0
- package/src/page_checkout_confirmation-billie.html +339 -0
- package/src/page_checkout_delivery-address-customer-journey.html +2 -2
- package/src/page_my-account-trade-pro-components.html +27 -0
- package/src/page_my-account-trade-pro.html +7 -0
- package/src/page_my-account.html +1 -0
- package/src/page_my-order.html +1 -1
- package/src/page_payment-details-with-billie.html +67 -0
- package/src/page_product-details-billie.html +87 -0
- package/src/page_shopping-cart-v2.html +4 -3
- package/src/page_wismo-details.html +2 -2
- package/src/partials/head.hbs +1 -5
- package/src/partials/main-nav.hbs +0 -1
- package/src/scss/common/_app.scss +0 -1
- package/src/scss/common/_elements.scss +4 -0
- package/src/scss/components/_billie-modal.scss +181 -0
- package/src/scss/components/_billie-online-messaging.scss +46 -0
- package/src/scss/components/_charity-donations.scss +114 -186
- package/src/scss/components/_donation-cart-new.scss +192 -0
- package/src/scss/components/_payments-checkout.scss +2 -1
- package/src/scss/components/_payments-v2.scss +8 -0
- package/src/scss/components/_smart-banner.scss +4 -2
- package/src/scss/components/_tooltip.scss +19 -0
- package/src/scss/components/checkout-payment-details-v2.scss +237 -0
- package/src/scss/components/loader.scss +8 -0
- package/src/scss/components/my-account/_active-orders.scss +2 -0
- package/src/scss/components/my-account/_payment-status.scss +84 -0
- package/src/scss/components/my-account/_saving-totaliser.scss +175 -0
- package/src/scss/components/price-block-v2-critical.scss +4 -0
- package/src/scss/components/price-block-v2.scss +4 -0
- package/src/scss/globals/_global-components.scss +0 -1
- package/src/scss/main.scss +0 -1
- package/src/scss/pages/_checkout-confirmation-new.scss +10 -3
- package/src/scss/pages/checkout-new.scss +3 -0
- package/src/scss/pages/my-account-v2.scss +3 -0
- package/src/scss/pages/page_wismo-details.scss +1 -0
- package/src/scss/partials/_main-nav.scss +0 -31
- package/src/scss/pdp-main-critical.scss +1 -1
- package/src/scss/pdp-main.scss +2 -0
- package/src/sitemap.html +24 -19
- package/src/components/google-banner.hbs +0 -29
- package/src/js/emulation/main-nav-local.js +0 -21
- package/src/page_app_google_banner.html +0 -176
- package/src/page_my-account_tradePro-with-google-banner.html +0 -147
- package/src/page_old-navigation.html +0 -10
- package/src/page_product-details_google-banner.html +0 -124
- package/src/page_shopping-cart-charity.html +0 -56
- package/src/scss/components/_google_banner-critical.scss +0 -66
- package/src/scss/components/_google_banner.scss +0 -80
|
@@ -5,33 +5,6 @@
|
|
|
5
5
|
font-weight: 500;
|
|
6
6
|
background: $white;
|
|
7
7
|
|
|
8
|
-
.ssc {
|
|
9
|
-
&-nav {
|
|
10
|
-
@include make-container;
|
|
11
|
-
@include make-container-max-widths;
|
|
12
|
-
display: flex;
|
|
13
|
-
gap: 5px;
|
|
14
|
-
padding: 3px 15px;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
&-line {
|
|
18
|
-
height: 63px;
|
|
19
|
-
border-radius: 10px;
|
|
20
|
-
|
|
21
|
-
&:first-child {
|
|
22
|
-
flex: 0 0 34px;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
&:last-child {
|
|
26
|
-
flex: 0 0 50px;
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
&__section + .ssc-nav {
|
|
32
|
-
display: none;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
8
|
&__top-offers {
|
|
36
9
|
display: none;
|
|
37
10
|
}
|
|
@@ -354,10 +327,6 @@
|
|
|
354
327
|
}
|
|
355
328
|
}
|
|
356
329
|
|
|
357
|
-
.ssc-nav {
|
|
358
|
-
display: none;
|
|
359
|
-
}
|
|
360
|
-
|
|
361
330
|
&.js-visible {
|
|
362
331
|
display: block;
|
|
363
332
|
}
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
@import 'components/saving-shopping-list-critical';
|
|
40
40
|
@import 'components/price-block-critical';
|
|
41
41
|
@import 'components/price-block-v2-critical';
|
|
42
|
-
@import 'components/google_banner-critical';
|
|
43
42
|
@import 'components/wisdom-critical';
|
|
44
43
|
@import 'components/pdp-action-v2';
|
|
45
44
|
@import 'components/clearpay';
|
|
45
|
+
@import 'components/billie-online-messaging';
|
|
46
46
|
|
|
47
47
|
// Pages
|
|
48
48
|
@import 'pages/page_product-details-critical';
|
package/src/scss/pdp-main.scss
CHANGED
package/src/sitemap.html
CHANGED
|
@@ -143,12 +143,6 @@
|
|
|
143
143
|
Product details page - no previous default
|
|
144
144
|
</a>
|
|
145
145
|
</li>
|
|
146
|
-
<li>
|
|
147
|
-
<span class="page-id">2.14</span>
|
|
148
|
-
<a href="page_product-details_google-banner.html" target="_blank">
|
|
149
|
-
Product details page - google banner
|
|
150
|
-
</a>
|
|
151
|
-
</li>
|
|
152
146
|
<li>
|
|
153
147
|
<span class="page-id">2.15</span>
|
|
154
148
|
<a href="page_product-details-wisdom.html" target="_blank">
|
|
@@ -534,6 +528,7 @@
|
|
|
534
528
|
<li><span class="page-id">5.15</span><a href="page_my-account.html" target="_blank">My Account DIY</a></li>
|
|
535
529
|
<li><a href="page_my-account-installer.html" target="_blank">My Account Installer</a></li>
|
|
536
530
|
<li><a href="page_my-account-trade-pro.html" target="_blank">My Account TradePro</a></li>
|
|
531
|
+
<li><a href="page_my-account-trade-pro-components.html" target="_blank">My Account TradePro Components</a></li>
|
|
537
532
|
<li><a href="page_personal-details.html" target="_blank">My Account Personal Details</a></li>
|
|
538
533
|
<li><a href="page_personal-details-installer.html" target="_blank">My Account Personal Details Installer</a></li>
|
|
539
534
|
<li><a href="page_default-store-page-empty.html" target="_blank">Default Store Page Empty</a></li>
|
|
@@ -674,10 +669,6 @@
|
|
|
674
669
|
<span class="page-id">10.6</span>
|
|
675
670
|
<a href="page_my-account_tradePro.html" target="_blank">TradePro MyAccount</a>
|
|
676
671
|
</li>
|
|
677
|
-
<li>
|
|
678
|
-
<span class="page-id">10.7</span>
|
|
679
|
-
<a href="page_my-account_tradePro-with-google-banner.html" target="_blank">TradePro MyAccount - with google banner</a>
|
|
680
|
-
</li>
|
|
681
672
|
<li>
|
|
682
673
|
<span class="page-id">10.8</span>
|
|
683
674
|
<a href="page_tradePro_address-book.html" target="_blank">TradePro Address Book</a>
|
|
@@ -927,16 +918,36 @@
|
|
|
927
918
|
</li>
|
|
928
919
|
</ul>
|
|
929
920
|
<h3>
|
|
930
|
-
|
|
921
|
+
Pages with Billie payment
|
|
931
922
|
</h3>
|
|
932
923
|
<ul>
|
|
933
924
|
<li>
|
|
934
925
|
<span class="page-id">1</span>
|
|
935
|
-
<a href="
|
|
936
|
-
|
|
926
|
+
<a href="page_payment-details-with-billie.html" target="_blank">
|
|
927
|
+
Billie - Payment details
|
|
928
|
+
</a>
|
|
929
|
+
</li>
|
|
930
|
+
<li>
|
|
931
|
+
<span class="page-id">2</span>
|
|
932
|
+
<a href="page_product-details-billie.html" target="_blank">
|
|
933
|
+
Billie PDP
|
|
934
|
+
</a>
|
|
935
|
+
</li>
|
|
936
|
+
<li>
|
|
937
|
+
<span class="page-id">3</span>
|
|
938
|
+
<a href="page_checkout_confirmation-billie.html" target="_blank">
|
|
939
|
+
Billie Checkout - Confirmation new
|
|
940
|
+
</a>
|
|
941
|
+
</li>
|
|
942
|
+
<li>
|
|
943
|
+
<span class="page-id">4</span>
|
|
944
|
+
<a href="page_basket-billie.html" target="_blank">
|
|
945
|
+
Billie Basket
|
|
937
946
|
</a>
|
|
938
947
|
</li>
|
|
939
948
|
</ul>
|
|
949
|
+
|
|
950
|
+
|
|
940
951
|
</div>
|
|
941
952
|
<div class="col">
|
|
942
953
|
<h3>Basket</h3>
|
|
@@ -949,8 +960,6 @@
|
|
|
949
960
|
Basket</a></li>
|
|
950
961
|
<li><span class="page-id">8.6</span><a href="page_checkout_merge-basket.html" target="_blank">Merged
|
|
951
962
|
basket</a></li>
|
|
952
|
-
<li><span class="page-id">8.7</span><a href="page_shopping-cart-charity.html" target="_blank">Basket Charity Donation</a>
|
|
953
|
-
</li>
|
|
954
963
|
<li><span class="page-id">8.8</span><a href="page_shopping-cart-v2.html" target="_blank">Basket NEW</a>
|
|
955
964
|
</li>
|
|
956
965
|
<li><span class="page-id">8.9</span><a href="page_shopping-cart-registered-v2.html" target="_blank">Basket Registered NEW</a>
|
|
@@ -1124,10 +1133,6 @@
|
|
|
1124
1133
|
<span class="page-id">10.3</span>
|
|
1125
1134
|
<a href="page_app_sticky_headers-wickes-logo.html" target="_blank">Sticky Wickes Logo Header</a>
|
|
1126
1135
|
</li>
|
|
1127
|
-
<li>
|
|
1128
|
-
<span class="page-id">10.4</span>
|
|
1129
|
-
<a href="page_app_google_banner.html" target="_blank">DIY APP Google banner</a>
|
|
1130
|
-
</li>
|
|
1131
1136
|
<li>
|
|
1132
1137
|
<span class="page-id">10.4</span>
|
|
1133
1138
|
<a href="page_app_diy_google_ios_banner.html" target="_blank">DIY APP Google iOS banner</a>
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
<div class="google_banner">
|
|
2
|
-
|
|
3
|
-
<div class="banner">
|
|
4
|
-
<div class="banner-wrapper">
|
|
5
|
-
<div class="banner-wrapper-inner">
|
|
6
|
-
|
|
7
|
-
<div class="banner-wrapper-inner__logo">
|
|
8
|
-
<img src="https://eu-images.contentstack.com/v3/assets/blt066259863543a0d2/bltd3f31eb168092e78/609b9a50996bf2507755257b/tradePro-logo_desk.png?width=60&height=60" alt="Logo Wickes">
|
|
9
|
-
</div>
|
|
10
|
-
|
|
11
|
-
<div class="banner-wrapper-inner__head">
|
|
12
|
-
<div class="header-text">Wickes TradePro</div>
|
|
13
|
-
<div class="google-play-logo">
|
|
14
|
-
<img src="https://eu-images.contentstack.com/v3/assets/blt066259863543a0d2/blt42ead587a25413e0/609b9a50821a2750878acb3c/download.png?width=90&height=21" alt="Google play">
|
|
15
|
-
</div>
|
|
16
|
-
</div>
|
|
17
|
-
|
|
18
|
-
<div class="banner-wrapper-inner__action">
|
|
19
|
-
<button class="close notification__close banner-wrapper-inner__action-close" type="button">
|
|
20
|
-
<span class="icon"><i class="far fa-times"></i></span>
|
|
21
|
-
</button>
|
|
22
|
-
|
|
23
|
-
<button class="btn btn_install">INSTALL</button>
|
|
24
|
-
</div>
|
|
25
|
-
|
|
26
|
-
</div>
|
|
27
|
-
</div>
|
|
28
|
-
</div>
|
|
29
|
-
</div>
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
var Wick = Wick || {};
|
|
2
|
-
|
|
3
|
-
Wick.MainNavLocal = function(){
|
|
4
|
-
function init() {
|
|
5
|
-
var localOptions = {
|
|
6
|
-
local: true,
|
|
7
|
-
mockData: Wick.MainNavData.returnData()
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
if (!$('#main-nav').length || !$('.ssc-nav').length) {
|
|
11
|
-
return;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
setTimeout(()=> {
|
|
16
|
-
Wick.MainNav.createMainNav(localOptions);
|
|
17
|
-
}, 2000)
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
init()
|
|
21
|
-
}();
|
|
@@ -1,176 +0,0 @@
|
|
|
1
|
-
{{#extend "base" pageClass="home-page" title="Home" hideBreadcrumbs=true hideBanner="true" pageHome="true" googleBanner="true"}}
|
|
2
|
-
{{#content "head" mode="append" pageHome="true"}}
|
|
3
|
-
<link type="text/css" rel="stylesheet" href="./css/pages/page_home.css">
|
|
4
|
-
<style>
|
|
5
|
-
.hero {
|
|
6
|
-
position: relative;
|
|
7
|
-
height: 400px;
|
|
8
|
-
overflow: hidden;
|
|
9
|
-
max-width: 1397px;
|
|
10
|
-
margin: 0 auto;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
@media screen and (max-width: 992px) {
|
|
14
|
-
.hero {
|
|
15
|
-
height: 290px;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
@media screen and (max-width: 600px) {
|
|
20
|
-
.hero {
|
|
21
|
-
height: 500px;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.hero__image-container .hero__image {
|
|
26
|
-
position: absolute;
|
|
27
|
-
left: 50%;
|
|
28
|
-
top: 50%;
|
|
29
|
-
transform: translate(-50%, -50%);
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
@media screen and (max-width: 768px) {
|
|
33
|
-
.hero__image-container {
|
|
34
|
-
height: 290px;
|
|
35
|
-
overflow: hidden;
|
|
36
|
-
position: relative;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
@media screen and (max-width: 600px) {
|
|
41
|
-
.hero__image-container {
|
|
42
|
-
height: 290px;
|
|
43
|
-
overflow: hidden;
|
|
44
|
-
position: relative;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.hero__banner {
|
|
49
|
-
position: absolute;
|
|
50
|
-
width: 380px;
|
|
51
|
-
top: 0;
|
|
52
|
-
left: 10%;
|
|
53
|
-
margin: 0 auto;
|
|
54
|
-
height: 100%;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
@media screen and (max-width: 900px) {
|
|
58
|
-
.hero__banner {
|
|
59
|
-
max-width: 240px;
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
@media screen and (max-width: 600px) {
|
|
64
|
-
.hero__banner {
|
|
65
|
-
max-width: 100%;
|
|
66
|
-
width: 100%;
|
|
67
|
-
position: relative;
|
|
68
|
-
left: 0;
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.hero__banner .banner-info_large {
|
|
73
|
-
position: relative;
|
|
74
|
-
}
|
|
75
|
-
.hero__banner .banner-info__offer {
|
|
76
|
-
font-size: 3rem;
|
|
77
|
-
margin-bottom: 20px;
|
|
78
|
-
width: 100%;
|
|
79
|
-
max-width: 100%;
|
|
80
|
-
}
|
|
81
|
-
</style>
|
|
82
|
-
{{/content}}
|
|
83
|
-
{{#content "body"}}
|
|
84
|
-
<div class="modal modal-box modal-box_full" id="modal-newsletter-signup" tabindex="-1" role="dialog">
|
|
85
|
-
<div class="modal-dialog modal-box__container" role="document">
|
|
86
|
-
<div class="modal-box__row justify-content-center">
|
|
87
|
-
<div class="modal-box__columns">
|
|
88
|
-
<div class="modal-content modal-box__content">
|
|
89
|
-
<div class="modal-header modal-box__header">
|
|
90
|
-
<div class="justify-content-center">
|
|
91
|
-
<div class="container">
|
|
92
|
-
<div class="row">
|
|
93
|
-
<div class="col-12">
|
|
94
|
-
<h3 class="modal-title modal-box__title">Sign up for regular news and offers direct to your inbox</h3>
|
|
95
|
-
</div>
|
|
96
|
-
</div>
|
|
97
|
-
</div>
|
|
98
|
-
</div>
|
|
99
|
-
<button class="close modal-box__btn-close d-print-none" type="button" data-dismiss="modal"
|
|
100
|
-
aria-label="Close">
|
|
101
|
-
<span class="icon" aria-hidden="true"><span class="far fa-times"></span></span>
|
|
102
|
-
</button>
|
|
103
|
-
</div>
|
|
104
|
-
<div class="modal-body modal-box__body popup-content">
|
|
105
|
-
<div class="component container">
|
|
106
|
-
<div class="row">
|
|
107
|
-
<div class="col-12">
|
|
108
|
-
<p class="email-title"><strong>Enter your email address</strong></p>
|
|
109
|
-
<form class="mb-3" action="#">
|
|
110
|
-
<div class="form-row__field newsletter-email">
|
|
111
|
-
<input type="email" class="tbx " value="" id="postcode" name="postcode">
|
|
112
|
-
</div>
|
|
113
|
-
<div class="form-row__col-btn">
|
|
114
|
-
<button class="btn green-btn btn-primary btn_full">
|
|
115
|
-
<span class="btn__text">Submit</span>
|
|
116
|
-
</button>
|
|
117
|
-
</div>
|
|
118
|
-
</form>
|
|
119
|
-
<p class="mb-0">By signing up you accept our <a href="./termsAndconditions">Terms & Conditions</a> including our <a href="./privacy">Privacy Policy</a></p>
|
|
120
|
-
</div>
|
|
121
|
-
</div>
|
|
122
|
-
</div>
|
|
123
|
-
</div>
|
|
124
|
-
<div class="modal-body modal-box__body popup-content popup-content__thank_you_message">
|
|
125
|
-
<div class="component container">
|
|
126
|
-
<div class="row">
|
|
127
|
-
<div class="col-10">
|
|
128
|
-
<div class="sign-up-popup__thank-you-msg">
|
|
129
|
-
<span class="fas fa-check" aria-hidden="true"></span>
|
|
130
|
-
Thank you for signing up for emails
|
|
131
|
-
</div>
|
|
132
|
-
</div>
|
|
133
|
-
</div>
|
|
134
|
-
</div>
|
|
135
|
-
</div>
|
|
136
|
-
</div>
|
|
137
|
-
</div>
|
|
138
|
-
</div>
|
|
139
|
-
</div>
|
|
140
|
-
</div>
|
|
141
|
-
|
|
142
|
-
<main class="banner-inside">
|
|
143
|
-
{{>offer-banner}}
|
|
144
|
-
<div class="hero">
|
|
145
|
-
<img class="hero__image" src="./img/placeholders/hero.jpg" alt="hero">
|
|
146
|
-
</div>
|
|
147
|
-
|
|
148
|
-
<div class="proposition">
|
|
149
|
-
<div class="proposition__inner">
|
|
150
|
-
<a href="#" class="proposition__link proposition__link_click-collect">
|
|
151
|
-
<span class="proposition__icon proposition__icon_click-collect"><i
|
|
152
|
-
class="fas fa-mouse-pointer icon"></i></span>
|
|
153
|
-
FREE Click & Collect<span
|
|
154
|
-
class="proposition__link_click-collect-short-text"> from store in 1 hour</span>
|
|
155
|
-
</a>
|
|
156
|
-
<a href="#" class="proposition__link proposition__link_delivery">
|
|
157
|
-
<span class="proposition__icon proposition__icon_delivery"><i class="fas fa-truck icon"></i></span>FREE
|
|
158
|
-
delivery *
|
|
159
|
-
</a>
|
|
160
|
-
<a href="#" class="proposition__link proposition__link_returns">
|
|
161
|
-
<span class="proposition__icon proposition__icon_returns"><i class="fas fa-reply-all icon"></i></span>FREE
|
|
162
|
-
returns
|
|
163
|
-
</a>
|
|
164
|
-
<a href="#" class="proposition__link proposition__link_price-promise">
|
|
165
|
-
<span class="proposition__icon proposition__icon_price-promise"><i class="fas fa-pound-sign icon"></i></span>Price
|
|
166
|
-
match promise
|
|
167
|
-
</a>
|
|
168
|
-
</div>
|
|
169
|
-
</div>
|
|
170
|
-
|
|
171
|
-
{{> home-offers }}
|
|
172
|
-
{{> popular-categories }}
|
|
173
|
-
|
|
174
|
-
</main>
|
|
175
|
-
{{/content}}
|
|
176
|
-
{{/extend}}
|
|
@@ -1,147 +0,0 @@
|
|
|
1
|
-
{{#extend "my-account" pageClass="page_my-account_new page_my-account_tradePro" title="My TradePro Account"
|
|
2
|
-
logo-tp=true
|
|
3
|
-
tradepro-nav=true
|
|
4
|
-
googleBanner=true
|
|
5
|
-
pageMyAcc=true
|
|
6
|
-
}}
|
|
7
|
-
{{#content "head" mode="append"}}
|
|
8
|
-
<link type="text/css" rel="stylesheet" href="./css/pages/page_my-account_tradePro.css">
|
|
9
|
-
{{/content}}
|
|
10
|
-
{{#content "heading"}}
|
|
11
|
-
{{> notifications notification-page.updated classModifier="personal-update-warning notification_success" withCloseBtn="true"}}
|
|
12
|
-
{{> account-heading title="My TradePro Account"}}
|
|
13
|
-
{{/content}}
|
|
14
|
-
{{#content "aside"}}
|
|
15
|
-
{{> aside-nav2 my-account-tradePro-menu-new active-index="0" page-name="MY TRADEPRO ACCOUNT" tradePro="true"}}
|
|
16
|
-
{{/content}}
|
|
17
|
-
{{#content "main"}}
|
|
18
|
-
<div class="table table_profile my-account-section_details my-account_new_order">
|
|
19
|
-
<div class="table__content">
|
|
20
|
-
<div class="row">
|
|
21
|
-
<div class="acc-icon">
|
|
22
|
-
<i class="fas fa-box-open"></i>
|
|
23
|
-
</div>
|
|
24
|
-
<div class="table__content-heading">Order history</div>
|
|
25
|
-
</div>
|
|
26
|
-
</div>
|
|
27
|
-
<div class="table__actions">
|
|
28
|
-
<a href="page_tradePro_order-history.html" class="btn btn-secondary">View orders</a>
|
|
29
|
-
</div>
|
|
30
|
-
</div>
|
|
31
|
-
<div class="table table_profile my-account-section_details my-account_mp">
|
|
32
|
-
<div class="table__content">
|
|
33
|
-
<div class="row">
|
|
34
|
-
<div class="acc-icon">
|
|
35
|
-
<i class="far fa-sliders-h"></i>
|
|
36
|
-
</div>
|
|
37
|
-
<div class="table__content-heading">Marketing Preferences</div>
|
|
38
|
-
</div>
|
|
39
|
-
<div class="row">
|
|
40
|
-
<div class="acc-icon pt-3"></div>
|
|
41
|
-
<div class="col opted">
|
|
42
|
-
<div class="table__content-heading opted__quest">Opted in</div>
|
|
43
|
-
<span class="table__content-info table__content-info-mob">Yes</span>
|
|
44
|
-
</div>
|
|
45
|
-
<div class="col opted opted-desk">
|
|
46
|
-
<div class="table__content-info table__content-info-desk opted__value">Yes</div>
|
|
47
|
-
</div>
|
|
48
|
-
</div>
|
|
49
|
-
</div>
|
|
50
|
-
<div class="table__actions">
|
|
51
|
-
<a href="page_marketing-preferences.html" class="btn btn-secondary">Update marketing preferences</a>
|
|
52
|
-
</div>
|
|
53
|
-
</div>
|
|
54
|
-
{{> table_profile please-email=true icon=true mod="my-account_new_name" tradePro=true}}
|
|
55
|
-
<div class="table table_profile my-account-section_details my-account_new_email">
|
|
56
|
-
<div class="table__content">
|
|
57
|
-
<div class="row">
|
|
58
|
-
<div class="acc-icon">
|
|
59
|
-
<i class="fas fa-envelope"></i>
|
|
60
|
-
</div>
|
|
61
|
-
<div class="table__content-heading">Email</div>
|
|
62
|
-
</div>
|
|
63
|
-
<div class="row">
|
|
64
|
-
<div class="acc-icon"></div>
|
|
65
|
-
<div class="col table__content-info">Test@Test.com</div>
|
|
66
|
-
</div>
|
|
67
|
-
</div>
|
|
68
|
-
<div class="table__actions">
|
|
69
|
-
<a href="page_my-account_change-email_tradePro.html" class="btn btn-secondary">Change email address</a>
|
|
70
|
-
<a href="page_my-account_change-password_tradePro.html" class="btn btn-secondary">Change your password</a>
|
|
71
|
-
</div>
|
|
72
|
-
</div>
|
|
73
|
-
<div class="table table_profile my-account-section_details my-account_new_address">
|
|
74
|
-
<div class="table__content">
|
|
75
|
-
<div class="row">
|
|
76
|
-
<div class="acc-icon">
|
|
77
|
-
<i class="fas fa-book"></i>
|
|
78
|
-
</div>
|
|
79
|
-
<div class="table__content-heading">Address</div>
|
|
80
|
-
<div class="col table__content-address">
|
|
81
|
-
<span>1 Test road, testington, TES T10</span>
|
|
82
|
-
</div>
|
|
83
|
-
</div>
|
|
84
|
-
<div class="row my-tradePro-acc_business-address">
|
|
85
|
-
<div class="acc-icon">
|
|
86
|
-
<i class="fas fa-hard-hat"></i>
|
|
87
|
-
</div>
|
|
88
|
-
<div class="table__content-heading">Business Address</div>
|
|
89
|
-
<div class="col table__content-address">
|
|
90
|
-
<span>1 Test road, testington, TES T10</span>
|
|
91
|
-
</div>
|
|
92
|
-
</div>
|
|
93
|
-
</div>
|
|
94
|
-
<div class="table__actions">
|
|
95
|
-
<a href="page_my-account_address-book_tradePro.html" class="btn btn-secondary">Manage address book</a>
|
|
96
|
-
</div>
|
|
97
|
-
</div>
|
|
98
|
-
<div class="table table_profile my-account-section_details my-account_new_payment">
|
|
99
|
-
<div class="table__content">
|
|
100
|
-
<div class="row">
|
|
101
|
-
<div class="acc-icon">
|
|
102
|
-
<i class="fas fa-credit-card-front"></i>
|
|
103
|
-
</div>
|
|
104
|
-
<div class="table__content-heading">Payment details</div>
|
|
105
|
-
<div class="col">41111*****11111</div>
|
|
106
|
-
</div>
|
|
107
|
-
<div class="row">
|
|
108
|
-
<div class="acc-icon"></div>
|
|
109
|
-
<div class="table__content-heading">Billing address</div>
|
|
110
|
-
<div class="col table__content-address">1 Test road, testington, TES T10</div>
|
|
111
|
-
</div>
|
|
112
|
-
</div>
|
|
113
|
-
<div class="table__actions">
|
|
114
|
-
<a href="page_my-account_payment-details_tradePro.html" class="btn btn-secondary">Manage payment details</a>
|
|
115
|
-
</div>
|
|
116
|
-
</div>
|
|
117
|
-
<div class="table table_profile my-account-section_details my-account_new_tradepro">
|
|
118
|
-
<div class="table__content">
|
|
119
|
-
<div class="row">
|
|
120
|
-
<div class="acc-icon">
|
|
121
|
-
<i class="fas fa-hard-hat"></i>
|
|
122
|
-
</div>
|
|
123
|
-
<div class="table__content-heading">TradePro Discount</div>
|
|
124
|
-
<div class="col table__content-address">
|
|
125
|
-
<span>In-store & online discount code</span>
|
|
126
|
-
</div>
|
|
127
|
-
</div>
|
|
128
|
-
<div class="row">
|
|
129
|
-
<div class="acc-icon">
|
|
130
|
-
<i class="fas fa-gift"></i>
|
|
131
|
-
</div>
|
|
132
|
-
<div class="table__content-heading">TradePro Rewards</div>
|
|
133
|
-
<div class="col table__content-address">
|
|
134
|
-
<span>Rewards & competitions</span>
|
|
135
|
-
</div>
|
|
136
|
-
</div>
|
|
137
|
-
</div>
|
|
138
|
-
<div class="table__actions">
|
|
139
|
-
<a href="page_tradePro_discount.html" class="btn btn-secondary">View TradePro Discount</a>
|
|
140
|
-
<a href="page_tradePro_rewards.html" class="btn btn-secondary">View TradePro Reward
|
|
141
|
-
<span class="rewards-counter">0</span>
|
|
142
|
-
</a>
|
|
143
|
-
</div>
|
|
144
|
-
</div>
|
|
145
|
-
<!-- /.my-account-section -->
|
|
146
|
-
{{/content}}
|
|
147
|
-
{{/extend}}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
{{#extend "base" pageClass="" title="Old navigation" oldNav=true hideBreadcrumbs=true pageBasket=true}}
|
|
2
|
-
{{#content "body"}}
|
|
3
|
-
<main>
|
|
4
|
-
<div class="container">
|
|
5
|
-
<h1 class="page-header__title">That example old navigation</h1>
|
|
6
|
-
<p class="page-header__intro">Must be skeleton and after loading navigation</p>
|
|
7
|
-
</div>
|
|
8
|
-
</main>
|
|
9
|
-
{{/content}}
|
|
10
|
-
{{/extend}}
|