Magento – Where is defined the Place Order button in default checkout payment step section

checkoutmagento-2.1magento2magento2.2template

I wanted to know where the button from the image is defined (The place order button in the payment step of checkout)

And also where is the discount code section defined?

enter image description here

Best Answer

In each payment, it defines its own the place order button, for example, for Cash On Delivery payment: vendor/magento/module-offline-payments/view/frontend/web/template/payment/cashondelivery.html.

For the discount: vendor/magento/module-sales-rule/view/frontend/web/template/payment/discount.html.

We need to override these templates.