payflow-express-bml.html 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!--
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. -->
  7. <div class="payment-method" data-bind="css: {'_active': (getCode() == isChecked())}">
  8. <div class="payment-method-title field choice">
  9. <input type="radio"
  10. name="payment[method]"
  11. class="radio"
  12. data-bind="attr: {'id': getCode()}, value: getCode(), checked: isChecked, click: selectPaymentMethod, visible: isRadioButtonVisible()" />
  13. <label data-bind="attr: {'for': getCode()}" class="label">
  14. <!-- PayPal Logo -->
  15. <img src="https://www.paypalobjects.com/webstatic/en_US/i/buttons/ppc-acceptance-medium.png"
  16. data-bind="attr: {alt: $t('Acceptance Mark')}"
  17. class="payment-icon"/>
  18. <!-- PayPal Logo -->
  19. <span data-bind="text: getTitle()"></span>
  20. <a href="https://www.securecheckout.billmelater.com/paycapture-content/fetch?hash=AU826TU8&content=/bmlweb/ppwpsiw.html"
  21. data-bind="click: showAcceptanceWindow"
  22. class="action action-help">
  23. <!-- ko i18n: 'See terms' --><!-- /ko -->
  24. </a>
  25. </label>
  26. </div>
  27. <div class="payment-method-content">
  28. <!-- ko foreach: getRegion('messages') -->
  29. <!-- ko template: getTemplate() --><!-- /ko -->
  30. <!--/ko-->
  31. <fieldset class="fieldset" data-bind='attr: {id: "payment_form_" + getCode()}'>
  32. <div class="payment-method-note">
  33. <!-- ko i18n: 'You will be redirected to the PayPal website when you place an order.' --><!-- /ko -->
  34. </div>
  35. </fieldset>
  36. <div class="checkout-agreements-block">
  37. <!-- ko foreach: $parent.getRegion('before-place-order') -->
  38. <!-- ko template: getTemplate() --><!-- /ko -->
  39. <!--/ko-->
  40. </div>
  41. <div class="actions-toolbar">
  42. <div class="primary">
  43. <button class="action primary checkout"
  44. type="submit"
  45. data-bind="click: continueToPayPal, enable: (getCode() == isChecked())"
  46. disabled>
  47. <span data-bind="i18n: 'Continue to PayPal'"></span>
  48. </button>
  49. </div>
  50. </div>
  51. </div>
  52. </div>