wickes-css2 2.97.0-IM-1593-code-width.1 → 2.97.0-develop.1

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.
Files changed (102) hide show
  1. package/build/css/category-main.css +1 -1
  2. package/build/css/components/tile-calculator.css +1 -1
  3. package/build/css/main.css +1 -1
  4. package/build/css/my-account-main-v2.css +1 -1
  5. package/build/css/my-account-main.css +1 -1
  6. package/build/css/pages/page_address-book.css +1 -0
  7. package/build/css/pages/page_change-password.css +1 -0
  8. package/build/css/pages/page_ti.css +1 -1
  9. package/build/css/pages/tradePro-rewards.css +1 -1
  10. package/build/css/pdp-main-before-combine.css +1 -1
  11. package/build/css/pdp-main-critical.css +1 -1
  12. package/build/css/pdp-main-non-critical.css +1 -1
  13. package/build/css/pdp-main.css +1 -1
  14. package/build/js/account-members.min.js +1 -1
  15. package/build/js/add-project-list-id.min.js +1 -1
  16. package/build/js/address-book.min.js +1 -0
  17. package/build/js/basket.min.js +2 -2
  18. package/build/js/bundle.min.js +1 -1
  19. package/build/js/change-password.min.js +1 -0
  20. package/build/js/checkout.min.js +2 -2
  21. package/build/js/emulation.min.js +7 -10
  22. package/build/js/energy-efficiency.min.js +1 -1
  23. package/build/js/general.bundle.min.js +1 -1
  24. package/build/js/global-search.min.js +1 -1
  25. package/build/js/merged-checkout.min.js +2 -2
  26. package/build/js/page/address-book.js +193 -0
  27. package/build/js/page/change-password.js +118 -0
  28. package/build/js/page/utils/errorMesages.js +14 -0
  29. package/build/js/page/utils/helpers.js +18 -0
  30. package/build/js/page/utils/validation.js +5 -1
  31. package/build/js/pdp.bundle.min.js +1 -1
  32. package/build/js/personal-details.min.js +1 -1
  33. package/build/js/plp.bundle.min.js +1 -1
  34. package/build/js/project-list.min.js +6 -2
  35. package/build/js/pstrength.min.js +161 -0
  36. package/build/js/quiz.min.js +1 -1
  37. package/build/js/track-my-order.min.js +1 -1
  38. package/package.json +10 -2
  39. package/src/components/address-card.hbs +40 -0
  40. package/src/components/base/link.hbs +13 -0
  41. package/src/components/leave-modal.hbs +13 -0
  42. package/src/components/my-account/delete-address-modal.hbs +23 -0
  43. package/src/components/my-account/leave-modal.hbs +1 -1
  44. package/src/components/pdp-info-v2.hbs +37 -0
  45. package/src/components/price-block-order.hbs +0 -1
  46. package/src/components/shopping-list-pdf.hbs +7 -37
  47. package/src/components/ti-header.hbs +34 -0
  48. package/src/components/ti-radio.hbs +57 -0
  49. package/src/components/ti-total-area.hbs +32 -0
  50. package/src/components/ti.hbs +791 -0
  51. package/src/components/tile-banner.hbs +13 -0
  52. package/src/components/tile-why-wickes.hbs +32 -0
  53. package/src/components/voucher.hbs +7 -6
  54. package/src/data/data_flooring-installation.json +186 -0
  55. package/src/data/data_voucher_tradePro.json +1 -1
  56. package/src/data/my-account/data_address-book.json +225 -0
  57. package/src/data/my-account/data_change-password.json +85 -0
  58. package/src/elements/form-row.hbs +11 -2
  59. package/src/js/components/general/switchVat.js +0 -11
  60. package/src/js/components/leave-event.js +2 -0
  61. package/src/js/components/pwdstrength.js +21 -0
  62. package/src/js/components/toggle-password-visibility.js +58 -0
  63. package/src/js/emulation/checkout_your-details.js +5 -5
  64. package/src/js/emulation/forms.js +1 -1
  65. package/src/js/emulation/project-list-print.js +1 -4
  66. package/src/js/libs/jquery.pstrength.custom-1.2.0.js +161 -0
  67. package/src/js/page/address-book.js +193 -0
  68. package/src/js/page/change-password.js +118 -0
  69. package/src/js/page/utils/errorMesages.js +14 -0
  70. package/src/js/page/utils/helpers.js +18 -0
  71. package/src/js/page/utils/validation.js +5 -1
  72. package/src/layouts/base.hbs +1 -1
  73. package/src/page_my-account_address-book-form.html +94 -0
  74. package/src/page_my-account_address-book.html +47 -24
  75. package/src/page_my-account_address-book_tradePro.html +45 -18
  76. package/src/page_my-account_change-password.html +62 -29
  77. package/src/page_personal-details-installer.html +6 -4
  78. package/src/page_personal-details.html +2 -0
  79. package/src/partials/header.hbs +1 -1
  80. package/src/scss/common/_common.scss +8 -0
  81. package/src/scss/components/_cards-slider.scss +0 -26
  82. package/src/scss/components/_leave-modal.scss +75 -0
  83. package/src/scss/components/_price-block-critical.scss +3 -3
  84. package/src/scss/components/_price-block.scss +8 -3
  85. package/src/scss/components/_rewards.scss +0 -20
  86. package/src/scss/components/_ti-header.scss +43 -0
  87. package/src/scss/components/_ti-radio.scss +142 -0
  88. package/src/scss/components/_ti-total-area.scss +53 -0
  89. package/src/scss/components/_tile-banner.scss +141 -0
  90. package/src/scss/components/_tile-why-wickes.scss +57 -0
  91. package/src/scss/components/tile-calculator.scss +4 -1
  92. package/src/scss/helpers/_mixins.scss +8 -0
  93. package/src/scss/libs/_pstrength.scss +34 -0
  94. package/src/scss/pages/_my-account_change-password.scss +0 -2
  95. package/src/scss/pages/page_address-book.scss +356 -0
  96. package/src/scss/pages/page_change-password.scss +147 -0
  97. package/src/scss/pages/page_ti.scss +719 -3
  98. package/src/scss/pages/tradePro-rewards.scss +1 -0
  99. package/src/sitemap.html +3 -4
  100. package/src/page_activate-trade-pro-api-flow.html +0 -62
  101. package/src/page_my-shopping-list-pdf-vat.html +0 -7
  102. /package/src/components/{button.hbs → base/button.hbs} +0 -0
@@ -1,4 +1,13 @@
1
1
  <section class="ti__step ti__step1">
2
+ {{#if header-present}}
3
+ {{#unless flooring}}
4
+ {{> ti-header linkClass="ti__step1-return step1-inactive"
5
+ number="Step 1" title="Calculate the area to tile" hint=true}}
6
+ {{else}}
7
+ {{> ti-header linkClass="ti__step1-return step1-inactive"
8
+ number="Step 1" title="Calculate area" hint=true}}
9
+ {{/unless}}
10
+ {{/if}}
2
11
  <div class="ti__card">
3
12
  {{> tile-product title="Wickes Callika Mist Grey Porcelain Tile 600 X 300mm"
4
13
  src="./img/placeholders/tile.png" price="14.04" quantity="6" priseSQM="13.00"}}
@@ -36,4 +45,786 @@
36
45
  </div>
37
46
  {{/if}}
38
47
  <div class="ti__error"></div>
48
+ {{#unless calculator}}
49
+ <div class="ti__next ti__next1 step1-active">
50
+ <button class="btn btn-primary btn_full">
51
+ <span class="btn__text">
52
+ Continue to estimate tile installation
53
+ <span class="ti__next-button-arrow">
54
+ <i class="fas fa-arrow-down"></i>
55
+ </span>
56
+ </span>
57
+ </button>
58
+ </div>
59
+ {{/unless}}
39
60
  </section>
61
+
62
+ {{#unless calculator}}
63
+ {{#if flooring}}
64
+ <section class="ti__step ti__step2">
65
+ {{> ti-header linkClass="ti__step2-return step2-inactive"
66
+ headerClass="ti__header-inactive" number="Step 2" title="Cost of flooring installation" }}
67
+ <div class="ti__cost step2-active">
68
+ <div class="ti__cost_postcode">
69
+ <label class="ti__cost_postcode-row">
70
+ <span class="ti__cost_postcode-label">
71
+ Postcode:
72
+ </span>
73
+ <span class="ti__cost_postcode-input">
74
+ <input class="tbx">
75
+ </span>
76
+ </label>
77
+ <p class="ti__cost_error-msg">Please enter a valid postcode</p>
78
+ </div>
79
+ <div class="ti__cost_removal ti__cost_removal-existing">
80
+ <p class="ti__cost_removal-title">
81
+ Include removal of existing flooring?
82
+ <span class="ti__cost_options-what ti__cost_options-what_accordion collapsed"
83
+ data-toggle="collapse"
84
+ data-target="#removal-exist-accordion">
85
+ <span>
86
+ What is this?
87
+ </span>
88
+ <span class="icon">
89
+ <i class="fas fa-angle-up"></i>
90
+ </span>
91
+ </span>
92
+ </p>
93
+ <div class="collapse" id="removal-exist-accordion">
94
+ {{> notifications withHideBtn=true target-id="removal-exist-accordion"
95
+ classModifier="notification_warning"
96
+ text="Often there is existing flooring or tiling in place which needs to be removed before the new project can start. Please tell us what type of product is already in place."}}
97
+ </div>
98
+ <div class="ti__cost_removal-radio">
99
+ {{#each flooring-installation.step2.removalExist}}
100
+ <div class="ti__cost_options-list">
101
+ {{> radiobutton label=label name="removal-exist" id=id}}
102
+ </div>
103
+ {{/each}}
104
+ </div>
105
+ <label class="ti__cost_removal-row">
106
+ <span class="ti__cost_removal-label">
107
+ Flooring to be removed of (m<sup>2</sup>):
108
+ </span>
109
+ <span class="ti__cost_removal-input">
110
+ <input type="text" inputmode="numeric" pattern="[0-9]*" class="tbx">
111
+ </span>
112
+ </label>
113
+ <p class="ti__cost_removal_error-msg">Please select a value that is more than 0</p>
114
+ <p class="ti__cost_error-msg">Please select an option</p>
115
+ </div>
116
+ <div class="ti__cost_removal">
117
+ <p class="ti__cost_removal-title">
118
+ Include removal of waste/disposal?
119
+ <span class="ti__cost_options-what ti__cost_options-what_accordion collapsed"
120
+ data-toggle="collapse"
121
+ data-target="#removal-waste-accordion">
122
+ <span>
123
+ What is this?
124
+ </span>
125
+ <span class="icon">
126
+ <i class="fas fa-angle-up"></i>
127
+ </span>
128
+ </span>
129
+ </p>
130
+ <div class="collapse" id="removal-waste-accordion">
131
+ {{> notifications withHideBtn=true target-id="removal-waste-accordion"
132
+ classModifier="notification_warning"
133
+ text="Does the existing flooring or tiling need to be removed and disposed of."}}
134
+ </div>
135
+ <div class="ti__cost_removal-radio">
136
+ {{#each flooring-installation.step2.removalWaste}}
137
+ <div class="ti__cost_options-list">
138
+ {{> radiobutton label=label name="removal-waste" id=id}}
139
+ </div>
140
+ {{/each}}
141
+ </div>
142
+ <p class="ti__cost_error-msg">Please select an option</p>
143
+ </div>
144
+ <div class="ti__cost_removal ti__cost-leveling">
145
+ <p class="ti__cost_removal-title">
146
+ Does your floor need leveling
147
+ <span class="ti__cost_options-what ti__cost_options-what_accordion collapsed"
148
+ data-toggle="collapse"
149
+ data-target="#leveling-accordion">
150
+ <span>
151
+ What is this?
152
+ </span>
153
+ <span class="icon">
154
+ <i class="fas fa-angle-up"></i>
155
+ </span>
156
+ </span>
157
+ </p>
158
+ <div class="collapse" id="leveling-accordion">
159
+ {{> notifications withHideBtn=true target-id="leveling-accordion"
160
+ classModifier="notification_warning"
161
+ text="Floors can be uneven and sometimes require a leveling compound before installation can begin."}}
162
+ </div>
163
+ <div class="ti__cost_removal-radio">
164
+ {{#each flooring-installation.step2.leveling}}
165
+ <div class="ti__cost_options-list">
166
+ {{> radiobutton label=label name="leveling" id=id}}
167
+ </div>
168
+ {{/each}}
169
+ </div>
170
+ <div class="ti__cost_removal-leveling">
171
+ <p class="ti__cost_removal-title">
172
+ What type of floor do you have?
173
+ </p>
174
+ <div class="ti__cost_removal-radio">
175
+ {{#each flooring-installation.step2.additionLeveling}}
176
+ <div class="ti__cost_options-list">
177
+ {{> radiobutton label=label name="additionLeveling" id=id}}
178
+ </div>
179
+ {{/each}}
180
+ </div>
181
+ </div>
182
+
183
+ <p class="ti__cost_error-msg">Please select an option</p>
184
+ </div>
185
+ <div class="ti__cost_removal ti__cost-threshold">
186
+ <p class="ti__cost_removal-title">
187
+ Include door threshold bars?
188
+ <span class="ti__cost_options-what ti__cost_options-what_accordion collapsed"
189
+ data-toggle="collapse"
190
+ data-target="#threshold-accordion">
191
+ <span>
192
+ What is this?
193
+ </span>
194
+ <span class="icon">
195
+ <i class="fas fa-angle-up"></i>
196
+ </span>
197
+ </span>
198
+ </p>
199
+ <div class="collapse" id="threshold-accordion">
200
+ {{> notifications withHideBtn=true target-id="threshold-accordion"
201
+ classModifier="notification_warning"
202
+ text="Door threshold bars sit at the bottom of a doorway and provide a neat doorway transition from one room to the next. "}}
203
+ </div>
204
+ <div class="ti__cost_removal-radio">
205
+ {{#each flooring-installation.step2.threshold.radio}}
206
+ <div class="ti__cost_options-list">
207
+ {{> radiobutton label=label name="threshold" id=id}}
208
+ </div>
209
+ {{/each}}
210
+ </div>
211
+ <div class="ti__cost_removal_second">
212
+ <p class="ti__cost_removal-title">
213
+ Will the door need trimming down?
214
+ <span class="ti__cost_options-what ti__cost_options-what_accordion collapsed"
215
+ data-toggle="collapse"
216
+ data-target="#trimming-accordion">
217
+ <span>
218
+ What is this?
219
+ </span>
220
+ <span class="icon">
221
+ <i class="fas fa-angle-up"></i>
222
+ </span>
223
+ </span>
224
+ </p>
225
+ <div class="collapse" id="trimming-accordion">
226
+ {{> notifications withHideBtn=true target-id="trimming-accordion"
227
+ classModifier="notification_warning"
228
+ text="When new flooring and doors threshold bars are fitted, sometimes the bottom of the doors need to be trimmed to allow them to close correctly."}}
229
+ </div>
230
+ <div class="ti__cost_removal-radio ">
231
+ {{#each flooring-installation.step2.trimming.radio}}
232
+ <div class="ti__cost_options-list">
233
+ {{> radiobutton label=label name="trimming" id=id}}
234
+ </div>
235
+ {{/each}}
236
+ </div>
237
+ </div>
238
+ <div class="ti__cost_removal-complements">
239
+ <p class="ti__cost_removal-title">
240
+ Select door threshold bars
241
+ </p>
242
+ <div class="ti__cost_cards">
243
+ {{#each flooring-installation.step2.threshold.cards}}
244
+ {{> card_complement}}
245
+ {{/each}}
246
+ </div>
247
+ </div>
248
+ <div class="ti__cost_removal-added">
249
+ <p class="ti__cost_removal-msg">
250
+ <i class="fas fa-check-circle"></i>
251
+ Added to your basket
252
+ </p>
253
+ <div class="ti__cost_removal-sum">
254
+ <span class="ti__cost_removal-product"></span>
255
+ <div class="ti__cost_removal-info">
256
+ <span class="ti__cost_removal-price">
257
+ £<span class="ti__cost_removal-value"></span>
258
+ </span>
259
+ <a href="" class="ti__cost_removal-remove">
260
+ <i class="fas fa-trash"></i> Remove item
261
+ </a>
262
+ </div>
263
+ </div>
264
+ </div>
265
+ <p class="ti__cost_error-msg">Please select an option</p>
266
+ </div>
267
+ <div class="ti__cost_removal ti__cost-scotia">
268
+ <p class="ti__cost_removal-title">
269
+ Include flooring trim/scotia?
270
+ <span class="ti__cost_options-what ti__cost_options-what_accordion collapsed"
271
+ data-toggle="collapse"
272
+ data-target="#scotia-accordion">
273
+ <span>
274
+ What is this?
275
+ </span>
276
+ <span class="icon">
277
+ <i class="fas fa-angle-up"></i>
278
+ </span>
279
+ </span>
280
+ </p>
281
+ <div class="collapse" id="scotia-accordion">
282
+ {{> notifications withHideBtn=true target-id="scotia-accordion"
283
+ classModifier="notification_warning"
284
+ text="Scotia is a decorative moulding used to cover the expansion gap without removing the skirting."}}
285
+ </div>
286
+ <div class="ti__cost_removal-radio">
287
+ {{#each flooring-installation.step2.scotia.radio}}
288
+ <div class="ti__cost_options-list">
289
+ {{> radiobutton label=label name="scotia" id=id}}
290
+ </div>
291
+ {{/each}}
292
+ </div>
293
+ <div class="ti__cost_removal-complements">
294
+ <p class="ti__cost_removal-title">
295
+ Select trim/scotia
296
+ </p>
297
+ <div class="ti__cost_cards">
298
+ {{#each flooring-installation.step2.scotia.cards}}
299
+ {{> card_complement}}
300
+ {{/each}}
301
+ </div>
302
+ </div>
303
+ <div class="ti__cost_removal-added">
304
+ <p class="ti__cost_removal-msg">
305
+ <i class="fas fa-check-circle"></i>
306
+ Added to your basket
307
+ </p>
308
+ <div class="ti__cost_removal-sum">
309
+ <span class="ti__cost_removal-product"></span>
310
+ <div class="ti__cost_removal-info">
311
+ <span class="ti__cost_removal-price">
312
+ £<span class="ti__cost_removal-value"></span>
313
+ </span>
314
+ <a href="" class="ti__cost_removal-remove">
315
+ <i class="fas fa-trash"></i> Remove item
316
+ </a>
317
+ </div>
318
+ </div>
319
+ </div>
320
+ <p class="ti__cost_error-msg">Please select an option</p>
321
+ </div>
322
+ <div class="ti__cost_removal ti__cost-underlay">
323
+ <p class="ti__cost_removal-title">
324
+ Include underlay?
325
+ <span class="ti__cost_options-what ti__cost_options-what_accordion collapsed"
326
+ data-toggle="collapse"
327
+ data-target="#underlay-accordion">
328
+ <span>
329
+ What is this?
330
+ </span>
331
+ <span class="icon">
332
+ <i class="fas fa-angle-up"></i>
333
+ </span>
334
+ </span>
335
+ </p>
336
+ <div class="collapse" id="underlay-accordion">
337
+ {{> notifications withHideBtn=true target-id="underlay-accordion"
338
+ classModifier="notification_warning"
339
+ text="Underlay is a barrier that sits beneath your flooring and used to protect against environmental factors like moisture and temperature. Underlay is required as part of any Wickes installation."}}
340
+ </div>
341
+ <div class="ti__cost_removal-radio">
342
+ {{#each flooring-installation.step2.underlay.radio}}
343
+ <div class="ti__cost_options-list">
344
+ {{> radiobutton label=label name="underlay" id=id}}
345
+ </div>
346
+ {{/each}}
347
+ </div>
348
+ <div class="ti__cost_removal-complements">
349
+ <p class="ti__cost_removal-title">
350
+ Select underlay
351
+ </p>
352
+ <div class="ti__cost_cards">
353
+ {{#each flooring-installation.step2.underlay.cards}}
354
+ {{> card_complement}}
355
+ {{/each}}
356
+ </div>
357
+ </div>
358
+ <div class="ti__cost_removal-added">
359
+ <p class="ti__cost_removal-msg">
360
+ <i class="fas fa-check-circle"></i>
361
+ Added to your basket
362
+ </p>
363
+ <div class="ti__cost_removal-sum">
364
+ <span class="ti__cost_removal-product"></span>
365
+ <div class="ti__cost_removal-info">
366
+ <span class="ti__cost_removal-price">
367
+ £<span class="ti__cost_removal-value"></span>
368
+ </span>
369
+ <a href="" class="ti__cost_removal-remove">
370
+ <i class="fas fa-trash"></i> Remove item
371
+ </a>
372
+ </div>
373
+ </div>
374
+ </div>
375
+ <p class="ti__cost_error-msg">Please select an option</p>
376
+ </div>
377
+ <div class="ti__error"></div>
378
+
379
+ <div class="ti__next ti__next2">
380
+ <button class="btn btn-primary btn_full">
381
+ <span class="btn__text btn__text-desktop">
382
+ Continue to your next step
383
+ <span class="ti__next-button-arrow">
384
+ <i class="fas fa-arrow-down"></i>
385
+ </span>
386
+ </span>
387
+ <span class="btn__text btn__text-mobile">
388
+ Estimate your Installation
389
+ </span>
390
+ </button>
391
+ </div>
392
+ </div>
393
+
394
+ <div class="ti__cost-ready step2-inactive">
395
+ <div class="ti__overview">
396
+ {{> tile-product2 src="./img/placeholders/tile.png"}}
397
+ </div>
398
+ <div class="ti__overview-price">
399
+ <div class="ti__overview-price_area">
400
+ <span class="ti__overview-price_area-spec">
401
+ Total area:
402
+ </span>
403
+ <div class="ti__overview-price_area-rest">
404
+ <span class="ti__overview-price_area-value">28</span>
405
+ <span class="ti__overview-price_area-text">m<sup>2</sup></span>
406
+ </div>
407
+ </div>
408
+ <div class="ti__overview-price_total">
409
+ <span class="ti__overview-price_total-spec">
410
+ Estimated price:
411
+ </span>
412
+ <div class="ti__overview-price_total-rest">
413
+ <span class="ti__overview-price_total-text">From</span>
414
+ <span class="ti__overview-price_total-value">£350.00*</span>
415
+ </div>
416
+ </div>
417
+ <div class="ti__overview-price_shortcut">
418
+ <p class="ti__overview-price_shortcut-text">
419
+ *This estimate is subject to home survey.
420
+ We will give you a call back to discuss your estimate in more detail.
421
+ </p>
422
+ <p class="ti__overview-price_shortcut-link">
423
+ <a href="#">
424
+ Please see our Terms and Conditions
425
+ </a>
426
+ </p>
427
+ </div>
428
+ </div>
429
+ <div class="ti__next ti__next-two">
430
+ <button class="btn btn-primary btn_full">
431
+ <span class="btn__text">
432
+ Continue to your next step
433
+ <span class="ti__next-button-arrow">
434
+ <i class="fas fa-arrow-down"></i>
435
+ </span>
436
+ </span>
437
+ </button>
438
+ </div>
439
+ </div>
440
+ </section>
441
+ <section class="ti__step ti__step3">
442
+ {{> ti-header
443
+ headerClass="ti__header-inactive" number="Step 3" title="Your next steps" }}
444
+ <div class="ti__choose">
445
+ <div class="fi__step3-choose">
446
+
447
+ <h5 class="ti__choose_title">
448
+ Please choose what you would like to do next:
449
+ </h5>
450
+ <div class="ti__choose_first">
451
+ <div class="ti__cost_options-list">
452
+ {{> radiobutton label="Call me to discuss installation" name="step3" id="call-me"}}
453
+ <div class="form-details ti__cost_options-list">
454
+ <div class="form-details__row">
455
+ <div class="form-details__info">
456
+ Simply complete your details below and click "Continue".
457
+ </div>
458
+ <div class="form-details__descr">
459
+ <div class="warning-required">Required fields</div>
460
+ </div>
461
+ </div>
462
+
463
+ <div class="form-row" data-row-required>
464
+ <label class="form-row__label form-row__label_required" for="first-name">Your
465
+ name:</label>
466
+ <div class="form-row__field">
467
+ <input type="text" class="tbx" id="first-name" name="first-name">
468
+ </div>
469
+ <div class="form-row__error">Please enter your name.</div>
470
+ </div>
471
+
472
+ <div class="form-row" data-row-required>
473
+ <label class="form-row__label form-row__label_required" for="mobile-telephone">Phone
474
+ number:</label>
475
+ <div class="form-row__field">
476
+ <input type="tel" class="tbx" id="mobile-telephone" name="mobile-telephone">
477
+ </div>
478
+ <div class="form-row__error">Please enter a valid phone number.</div>
479
+ </div>
480
+
481
+ <div class="form-row" data-row-required>
482
+ <label class="form-row__label form-row__label_required" for="email">E-mail
483
+ address:</label>
484
+ <div class="form-row__field">
485
+ <input type="email" class="tbx" id="email" name="email">
486
+ </div>
487
+ <div class="form-row__error">Please enter a valid email address. For example
488
+ josmith@domain.com
489
+ </div>
490
+ </div>
491
+ </div>
492
+ {{> radiobutton
493
+ label="Purchase your chosen flooring. We will then contact you to arrange a free, no-obligation flooring installation estimate"
494
+ name="step3"
495
+ id="purchase"}}
496
+ <div class="ti__cost_options-add ti__cost_options-first">
497
+ <p class="ti__cost_options-text">
498
+ Would you also like the accessories added?
499
+ </p>
500
+ <div class="ti__cost_options-list">
501
+ {{> radiobutton label="Yes" name="step3-2" id="step3-2-yes" checked=true}}
502
+ {{> radiobutton label="No" name="step3-2" id="step3-2-no"}}
503
+ </div>
504
+ </div>
505
+ {{> radiobutton label="Purchase your chosen flooring only." name="step3" id="purchase-only"}}
506
+ <div class="ti__cost_options-add ti__cost_options-second">
507
+ <p class="ti__cost_options-text">
508
+ Would you also like the accessories added?
509
+ </p>
510
+ <div class="ti__cost_options-list">
511
+ {{> radiobutton label="Yes" name="step3-3" id="step3-3-yes" checked=true}}
512
+ {{> radiobutton label="No" name="step3-3" id="step3-3-no"}}
513
+ </div>
514
+ </div>
515
+ </div>
516
+ <div class="ti__error"></div>
517
+ </div>
518
+ <div class="ti__next ti__next3">
519
+ <button class="btn btn-primary btn_full">
520
+ <span class="btn__text">
521
+ Continue
522
+ <span class="ti__next-button-arrow">
523
+ <i class="fas fa-arrow-right"></i>
524
+ </span>
525
+ </span>
526
+ </button>
527
+ </div>
528
+ <div class="ti__choose_second">
529
+ <div class="choose choose__add">
530
+ <span class="ti__phone">
531
+ <i class="fa fa-phone" aria-hidden="true"></i>
532
+ </span>
533
+ <div class="contact-info">
534
+ If you need any help or you would like to discuss your no-obligation floor estimate,
535
+ please
536
+ call
537
+ <a href="tel:02037 388 837">02037 388 837</a>.
538
+ </div>
539
+ </div>
540
+ </div>
541
+ </div>
542
+ <div class="fi__step3-sum">
543
+ <div class="ti__overview-price">
544
+ <div class="ti__overview-price_head">
545
+ Summary
546
+ </div>
547
+ <div class="ti__overview-price_area ti__overview-price_area-wline">
548
+ <span class="ti__overview-price_area-spec">
549
+ Total area:
550
+ </span>
551
+ <div class="ti__overview-price_area-rest">
552
+ <span class="ti__overview-price_area-value">28</span>
553
+ <span class="ti__overview-price_area-text">m<sup>2</sup></span>
554
+ </div>
555
+ </div>
556
+ <div class="ti__overview-price_floor">
557
+ <span class="ti__overview-price_floor-head">
558
+ Flooring:
559
+ </span>
560
+ <div class="ti__overview-price_floor-item">
561
+ <span class="ti__overview-price_floor-spec">
562
+ Wickes Alberto White Oak Laminate Flooring - 1.48 m2 Pack
563
+ </span>
564
+ <div class="ti__overview-price_floor-rest">
565
+ <span class="ti__overview-price_floor-text">
566
+ £<span class="ti__overview-price_floor-value">309.32</span>
567
+ </span>
568
+
569
+ </div>
570
+ </div>
571
+ </div>
572
+ <div class="ti__overview-price_access">
573
+ <span class="ti__overview-price_access-head">
574
+ Accessories:
575
+ </span>
576
+ <div class="ti__overview-price_access-item">
577
+ <span class="ti__overview-price_access-spec">
578
+ Shimla/Alberto/Salerno Variable Height Threshold Bar - 900mm
579
+ </span>
580
+ <div class="ti__overview-price_access-rest">
581
+ <span class="ti__overview-price_access-text">
582
+ £<span class="ti__overview-price_access-value">10</span>
583
+ </span>
584
+ </div>
585
+ </div>
586
+ </div>
587
+ <div class="ti__overview-price-estim">
588
+ <div class="ti__overview-price_total">
589
+ <span class="ti__overview-price_total-spec">
590
+ Estimated project price:
591
+ </span>
592
+ <div class="ti__overview-price_total-rest">
593
+ <!-- <span class="ti__overview-price_total-text">From</span>-->
594
+ <span class="ti__overview-price_total-value">£350.00*</span>
595
+ </div>
596
+ </div>
597
+ </div>
598
+ <div class="ti__overview-price_shortcut">
599
+ <p class="ti__overview-price_shortcut-text">
600
+ *This estimate is subject to home survey.
601
+ We will give you a call back to discuss your estimate in more detail.
602
+ </p>
603
+ <p class="ti__overview-price_shortcut-link">
604
+ <a href="#">
605
+ Please see our Terms and Conditions
606
+ </a>
607
+ </p>
608
+
609
+ </div>
610
+ <div class="ti__overview-price_floor-only">
611
+ <div class="ti__overview-price_total">
612
+ <span class="ti__overview-price_total-spec">
613
+ Total price:
614
+ </span>
615
+ <div class="ti__overview-price_total-rest">
616
+ <span class="ti__overview-price_total-value"></span>
617
+ </div>
618
+ </div>
619
+ </div>
620
+ </div>
621
+ </div>
622
+ <div class="ti__new fi__step3-new">
623
+ <div class="ti__new-link">
624
+ <a>
625
+ Start new estimate <i class="fas fa-angle-up"></i>
626
+ </a>
627
+ </div>
628
+ </div>
629
+ </div>
630
+ </section>
631
+ {{else}}
632
+ <section class="ti__step ti__step2">
633
+ {{> ti-header linkClass="ti__step2-return step2-inactive"
634
+ headerClass="ti__header-inactive" number="Step 2" title="Cost of tile installation" }}
635
+ <div class="ti__cost step2-active">
636
+ <div class="ti__cost_postcode">
637
+ <label class="ti__cost_postcode-row">
638
+ <span class="ti__cost_postcode-label">
639
+ Postcode:
640
+ </span>
641
+ <span class="ti__cost_postcode-input">
642
+ <input class="tbx">
643
+ </span>
644
+ </label>
645
+ <p class="ti__cost_error-msg">Please enter a valid postcode</p>
646
+ </div>
647
+ <div class="ti__cost_removal">
648
+ <p class="ti__cost_removal-title">
649
+ Include removal and disposal of existing tiles?
650
+ </p>
651
+ <div class="ti__cost_removal-radio">
652
+ {{> radiobutton label="Yes" name="removal" id="removal-yes"}}
653
+ {{> radiobutton label="No" name="removal" id="removal-no"}}
654
+ </div>
655
+ <label class="ti__cost_removal-row">
656
+ <span class="ti__cost_removal-label">
657
+ Tiled area to remove and dispose of (sqm):
658
+ </span>
659
+ <span class="ti__cost_removal-input">
660
+ <input class="tbx">
661
+ </span>
662
+ </label>
663
+ <p class="ti__cost_error-msg">Please select an option</p>
664
+ </div>
665
+ <div class="ti__cost_options">
666
+ <p class="ti__cost_options-title">
667
+ To ensure your installation quote is as accurate as possible, please tell us a little about
668
+ where you will be tiling:
669
+ </p>
670
+ <div>
671
+ <span class="ti__cost_options-what ti__cost_options-what_accordion collapsed"
672
+ data-toggle="collapse"
673
+ data-target="#what-accordion">
674
+ <span>
675
+ What is this?
676
+ </span>
677
+ <span class="icon">
678
+ <i class="fas fa-angle-up"></i>
679
+ </span>
680
+ </span>
681
+ <div class="collapse" id="what-accordion">
682
+ {{> notifications withHideBtn=true target-id="what-accordion"
683
+ classModifier="notification_warning"
684
+ text="Different surfaces may require specialist tiling products, such as flexible adhesive and waterproof boards."}}
685
+ </div>
686
+ </div>
687
+ <div class="ti__cost_options-list">
688
+ {{#each tile-installation.options}}
689
+ <div class="ti__cost_options-item">
690
+ {{> checkbox label=label id=id}}
691
+ </div>
692
+ {{/each}}
693
+ </div>
694
+ <p class="ti__cost_error-msg">Please select an option</p>
695
+ </div>
696
+ <div class="ti__cost_levelling">
697
+ <p class="ti__cost_levelling-title">
698
+ Does your floor need levelling?
699
+ </p>
700
+ <span class="ti__cost_options-what ti__cost_options-what_accordion collapsed"
701
+ data-toggle="collapse"
702
+ data-target="#what-accordion_levelling">
703
+ <span>
704
+ What is this?
705
+ </span>
706
+ <span class="icon">
707
+ <i class="fas fa-angle-up"></i>
708
+ </span>
709
+ </span>
710
+ <div class="collapse" id="what-accordion_levelling">
711
+ {{> notifications withHideBtn=true target-id="what-accordion_levelling"
712
+ classModifier="notification_warning"
713
+ text="Sometimes floors are not level. We will lay a thin layer of screed to ensure a smooth even surface."}}
714
+ </div>
715
+ <div class="ti__cost_levelling-radio">
716
+ {{> radiobutton label="Yes" name="levelling" id="levelling-yes"}}
717
+ {{> radiobutton label="No" name="levelling" id="levelling-no"}}
718
+ {{> radiobutton label="Unsure" name="levelling" id="levelling-unsure"}}
719
+ </div>
720
+ <label class="ti__cost_levelling-row">
721
+ <span class="ti__cost_levelling-label">
722
+ Tiled area to remove and dispose of (sqm):
723
+ </span>
724
+ <span class="ti__cost_levelling-input">
725
+ <input class="tbx">
726
+ </span>
727
+ </label>
728
+ <p class="ti__cost_error-msg">Please select an option</p>
729
+ </div>
730
+ <div class="ti__error"></div>
731
+ <div class="ti__next ti__next2">
732
+ <button class="btn btn-primary btn_full">
733
+ <span class="btn__text btn__text-desktop">
734
+ Continue to your next step
735
+ <span class="ti__next-button-arrow">
736
+ <i class="fas fa-arrow-down"></i>
737
+ </span>
738
+ </span>
739
+ <span class="btn__text btn__text-mobile">
740
+ Estimate your Installation
741
+ </span>
742
+ </button>
743
+ </div>
744
+ </div>
745
+ <div class="ti__cost-ready step2-inactive">
746
+ <div class="ti__overview">
747
+ {{> tile-product2 src="./img/placeholders/tile.png"}}
748
+ </div>
749
+ <div class="ti__overview-price">
750
+ <div class="ti__overview-price_total">
751
+ <span class="ti__overview-price_total-spec">
752
+ Estimated price:
753
+ </span>
754
+ <div class="ti__overview-price_total-rest">
755
+ <span class="ti__overview-price_total-text">From</span>
756
+ <span class="ti__overview-price_total-value">£350.00*</span>
757
+ </div>
758
+ </div>
759
+ <div class="ti__overview-price_shortcut">
760
+ <p class="ti__overview-price_shortcut-text">
761
+ *This estimate is subject to home survey.
762
+ We will give you a call back to discuss your estimate in more detail.
763
+ </p>
764
+ <p class="ti__overview-price_shortcut-link">
765
+ <a href="#">
766
+ Please see our Terms and Conditions
767
+ </a>
768
+ </p>
769
+ </div>
770
+ </div>
771
+ <div class="ti__next ti__next-two">
772
+ <button class="btn btn-primary btn_full">
773
+ <span class="btn__text">
774
+ Continue to your next step
775
+ <span class="ti__next-button-arrow">
776
+ <i class="fas fa-arrow-down"></i>
777
+ </span>
778
+ </span>
779
+ </button>
780
+ </div>
781
+ </div>
782
+ </section>
783
+ <section class="ti__step ti__step3">
784
+ {{> ti-header
785
+ headerClass="ti__header-inactive" number="Step 3" title="Your next steps" }}
786
+ <div class="ti__choose">
787
+ <h5 class="ti__choose_title">
788
+ Please choose what you would like to do next:
789
+ </h5>
790
+ <div class="ti__choose_first">
791
+ {{> ti-radio class="choose__callback" radioName="step3" radioID=radioID
792
+ step=tile-installation.next-steps
793
+ listTitle=false
794
+ sourse=tile-installation.list
795
+ }}
796
+ <div class="ti__error"></div>
797
+ </div>
798
+ <div class="ti__next ti__next3">
799
+ <button class="btn btn-primary btn_full">
800
+ <span class="btn__text">
801
+ Continue
802
+ <span class="ti__next-button-arrow">
803
+ <i class="fas fa-arrow-right"></i>
804
+ </span>
805
+ </span>
806
+ </button>
807
+ </div>
808
+ <div class="ti__new">
809
+ <div class="ti__new-link">
810
+ <a>
811
+ Start new estimate <i class="fas fa-angle-up"></i>
812
+ </a>
813
+ </div>
814
+ </div>
815
+ <div class="ti__choose_second">
816
+ <div class="choose choose__add">
817
+ <span class="ti__phone">
818
+ <i class="fa fa-phone" aria-hidden="true"></i>
819
+ </span>
820
+ <div class="contact-info">
821
+ If you need any help or you would like to discuss your no-obligation tile estimate, please
822
+ call
823
+ <a href="tel:02037 388 837">02037 388 837</a>.
824
+ </div>
825
+ </div>
826
+ </div>
827
+ </div>
828
+ </section>
829
+ {{/if}}
830
+ {{/unless}}