> For the complete documentation index, see [llms.txt](https://documentation.siteglide.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.siteglide.com/ecommerce/get-started-ecommerce/basic-payment-forms/ecommerce-basic_payment.md).

# ecommerce/basic\_payment

### What is it?

This is used to output payment fields in a basic payment form.

### Where to use?

You should include this on a basic payment form.

### How to use?

```liquid
{%- include 'ecommerce/basic_payment'
  amount: '500'
  currency: 'usd'
  id: '10'
-%}
```

| Parameter | Type    | Notes                                                                                                                                                        |
| --------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| amount    | Integer | The amount to be charged in cents/pence (e.g. 500 = $5.00)                                                                                                   |
| currency  | String  | The currency to charge the user                                                                                                                              |
| id        | Integer | The ID of the Payment Gateway to be used. If not included, then the system will output the Payment Gateway that you most recently updated in Siteglide Admin |
