# Payment & Transactions / Payment Confirmation Payment confirmation summary with fee breakdown table, stepper progress, and secure gateway info. **Category:** Patterns **Storybook:** https://doc.ux4g.gov.in/web/?path=/story/ux4g-patterns-payment-transactions-payment-confirmation--full-screen ## Pattern variants - Full Screen: https://doc.ux4g.gov.in/web/?path=/story/ux4g-patterns-payment-transactions-payment-confirmation--full-screen - Card: https://doc.ux4g.gov.in/web/?path=/story/ux4g-patterns-payment-transactions-payment-confirmation--card ## When to use this pattern Use Payment & Transactions / Payment Confirmation when building citizen-facing flows that match the described government journey. Combine components such as cards, forms, tables, buttons, and status indicators as shown in Storybook. ## Framework setup ### HTML / CDN ```html ``` ### React ```bash npm install ux4g-web-components ``` ```jsx import 'ux4g-web-components/styles.css'; import 'ux4g-web-components/design-system'; ``` ### Angular Update `angular.json`: ```json { "styles": [ "node_modules/ux4g-web-components/styles/ux4g.css", "src/styles.css" ], "scripts": [ "node_modules/ux4g-web-components/dist/runtime/design-system.js" ] } ``` ## Code examples The snippets below are extracted from the Storybook canvas for Payment & Transactions / Payment Confirmation. Each example shows the rendered HTML, the equivalent React JSX, and the Angular template markup. ### 1. Card — Payment Confirmation Summary HTML: ```html
  • Personal info
  • Documents
  • Review
  • Payment

Payment

Pay the application fee to complete your Income Certificate submission.

Income Certificate Application

Application fee Rs 30.00
Processing charge Rs 5.00
GST (18%) Rs 6.30
Total Rs 41.30
info
Secure payment via PayGov - National Information Centre payment gateway.
``` React: ```jsx import React from 'react'; const PaymentTransactionsPaymentConfirmationExample1Demo = () => ( <>
  • Personal info
  • Documents
  • Review
  • Payment

Payment

Pay the application fee to complete your Income Certificate submission.

Income Certificate Application

Application fee Rs 30.00
Processing charge Rs 5.00
GST (18%) Rs 6.30
Total Rs 41.30
info
Secure payment via PayGov - National Information Centre payment gateway.
Powered by - Digital India
); export default PaymentTransactionsPaymentConfirmationExample1Demo; ``` Angular: ```html
  • Personal info
  • Documents
  • Review
  • Payment

Payment

Pay the application fee to complete your Income Certificate submission.

Income Certificate Application

Application fee Rs 30.00
Processing charge Rs 5.00
GST (18%) Rs 6.30
Total Rs 41.30
info
Secure payment via PayGov - National Information Centre payment gateway.
``` ### 2. Full Screen — Payment Confirmation Summary HTML: ```html
  • Personal info
  • Documents
  • Review
  • Payment

Payment

Pay the application fee to complete your Income Certificate submission.

Income Certificate Application

Application fee Rs 30.00
Processing charge Rs 5.00
GST (18%) Rs 6.30
Total Rs 41.30
info
Secure payment via PayGov - National Information Centre payment gateway.
``` React: ```jsx import React from 'react'; const PaymentTransactionsPaymentConfirmationExample2Demo = () => ( <>
  • Personal info
  • Documents
  • Review
  • Payment

Payment

Pay the application fee to complete your Income Certificate submission.

Income Certificate Application

Application fee Rs 30.00
Processing charge Rs 5.00
GST (18%) Rs 6.30
Total Rs 41.30
info
Secure payment via PayGov - National Information Centre payment gateway.
Powered by - Digital India
); export default PaymentTransactionsPaymentConfirmationExample2Demo; ``` Angular: ```html
  • Personal info
  • Documents
  • Review
  • Payment

Payment

Pay the application fee to complete your Income Certificate submission.

Income Certificate Application

Application fee Rs 30.00
Processing charge Rs 5.00
GST (18%) Rs 6.30
Total Rs 41.30
info
Secure payment via PayGov - National Information Centre payment gateway.
```