payment.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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('beforeMethods') -->
  25. <!-- ko template: getTemplate() --><!-- /ko -->
  26. <!-- /ko -->
  27. <div id="checkout-payment-method-load" class="opc-payment" data-bind="visible: isPaymentMethodsAvailable">
  28. <!-- ko foreach: getRegion('payment-methods-list') -->
  29. <!-- ko template: getTemplate() --><!-- /ko -->
  30. <!-- /ko -->
  31. </div>
  32. <div class="no-quotes-block" data-bind="visible: isPaymentMethodsAvailable() == false">
  33. <!-- ko i18n: 'No Payment method available.'--><!-- /ko -->
  34. </div>
  35. <!-- ko foreach: getRegion('afterMethods') -->
  36. <!-- ko template: getTemplate() --><!-- /ko -->
  37. <!-- /ko -->
  38. </fieldset>
  39. </form>
  40. </div>
  41. </li>