Guest User

Untitled

a guest
Jan 23rd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.43 KB | None | 0 0
  1. <!--
  2. /**
  3. * Copyright © 2013-2017 Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. -->
  7. <!-- ko if: isActive() -->
  8. <div class="gift-message">
  9. <div class="gift-options-title">
  10. <span data-bind="i18n: 'Gift Message (optional)'"></span>
  11. </div>
  12. <div class="gift-options-content">
  13. <fieldset class="fieldset">
  14. <div class="field field-to">
  15. <label for="gift-message-whole-to" class="label">
  16. <span data-bind="i18n: 'To:'"></span>
  17. </label>
  18. <div class="control">
  19. <input type="text"
  20. id="gift-message-whole-to"
  21. class="input-text"
  22. data-bind="value: getObservable('recipient')">
  23. </div>
  24. </div>
  25.  
  26. <div class="field field-from">
  27. <label for="gift-message-whole-from" class="label">
  28. <span data-bind="i18n: 'From:'"></span>
  29. </label>
  30. <div class="control">
  31. <input type="text"
  32. id="gift-message-whole-from"
  33. class="input-text"
  34. data-bind="value: getObservable('sender')">
  35. </div>
  36. </div>
  37. <div class="field text">
  38. <label for="gift-message-whole-message" class="label">
  39. <span data-bind="i18n: 'Message:'"></span>
  40. </label>
  41. <div class="control">
  42. <textarea id="gift-message-whole-message"
  43. class="input-text"
  44. rows="5" cols="10"
  45. data-bind="value: getObservable('message')"></textarea>
  46. </div>
  47. </div>
  48. </fieldset>
  49.  
  50. </div>
  51. </div>
  52. <!-- /ko -->
  53. <div class="actions-toolbar">
  54. <div class="secondary">
  55. <button type="submit" class="action secondary action-update" data-bind="
  56. attr: {title: $t('Update')},
  57. click: $data.submitOptions.bind($data)">
  58. <span data-bind="i18n: 'Update'"></span>
  59. </button>
  60. <button class="action action-cancel" data-bind="
  61. attr: {title: $t('Cancel')},
  62. click: $data.hideFormBlock.bind($data)">
  63. <span data-bind="i18n: 'Cancel'"></span>
  64. </button>
  65. </div>
  66. </div>
Add Comment
Please, Sign In to add comment