You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

46 lines
2.0 KiB

  1. <!--
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. -->
  7. <li id="payment" role="presentation" class="checkout-payment-method" data-bind="fadeVisible: isVisible">
  8. <div id="checkout-step-payment"
  9. class="step-content"
  10. data-role="content"
  11. role="tabpanel"
  12. aria-hidden="false">
  13. <!-- ko if: (quoteIsVirtual) -->
  14. <!-- ko foreach: getRegion('customer-email') -->
  15. <!-- ko template: getTemplate() --><!-- /ko -->
  16. <!--/ko-->
  17. <!--/ko-->
  18. <form id="co-payment-form" class="form payments" novalidate="novalidate">
  19. <input data-bind='attr: {value: getFormKey()}' type="hidden" name="form_key"/>
  20. <fieldset class="fieldset">
  21. <legend class="legend">
  22. <span data-bind="i18n: 'Payment Information'"></span>
  23. </legend><br />
  24. <!-- ko foreach: getRegion('place-order-captcha') -->
  25. <!-- ko template: getTemplate() --><!-- /ko -->
  26. <!-- /ko -->
  27. <br />
  28. <!-- ko foreach: getRegion('beforeMethods') -->
  29. <!-- ko template: getTemplate() --><!-- /ko -->
  30. <!-- /ko -->
  31. <div id="checkout-payment-method-load" class="opc-payment" data-bind="visible: isPaymentMethodsAvailable">
  32. <!-- ko foreach: getRegion('payment-methods-list') -->
  33. <!-- ko template: getTemplate() --><!-- /ko -->
  34. <!-- /ko -->
  35. </div>
  36. <div class="no-quotes-block" data-bind="visible: isPaymentMethodsAvailable() == false">
  37. <!-- ko i18n: 'No Payment method available.'--><!-- /ko -->
  38. </div>
  39. <!-- ko foreach: getRegion('afterMethods') -->
  40. <!-- ko template: getTemplate() --><!-- /ko -->
  41. <!-- /ko -->
  42. </fieldset>
  43. </form>
  44. </div>
  45. </li>