# Feedback & Communication / Service Completed Service completion confirmation with appointment summary and feedback prompt. **Category:** Patterns **Storybook:** https://doc.ux4g.gov.in/web/?path=/story/ux4g-patterns-feedback-communication-service-completed--introduction ## Pattern variants - Service Completed: https://doc.ux4g.gov.in/web/?path=/story/ux4g-patterns-feedback-communication-service-completed--service-completed ## When to use this pattern Use Feedback & Communication / Service Completed 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 Feedback & Communication / Service Completed. Each example shows the rendered HTML, the equivalent React JSX, and the Angular template markup. ### 1. Introduction — Introduction HTML: ```html
Patterns

Service Completed

Service completion confirmation with appointment summary and feedback prompt.

check_circle

Service Completed

Service completion confirmation screen with summary details and feedback prompt.

``` React: ```jsx import React from 'react'; const FeedbackCommunicationServiceCompletedExample1Demo = () => ( <>
Patterns

Service Completed

Service completion confirmation with appointment summary and feedback prompt.

check_circle

Service Completed

Service completion confirmation screen with summary details and feedback prompt.

); export default FeedbackCommunicationServiceCompletedExample1Demo; ``` Angular: ```html
Patterns

Service Completed

Service completion confirmation with appointment summary and feedback prompt.

check_circle

Service Completed

Service completion confirmation screen with summary details and feedback prompt.

``` ### 2. Service Completed — Service Completed HTML: ```html

Service Completed

Your income certificate has been downloaded.

check_circle
Income Certificate Downloaded. Your certificate has been saved to your device. View
income_certificate_2026.pdf 28 KB · PDF
``` React: ```jsx import React from 'react'; const FeedbackCommunicationServiceCompletedExample2Demo = () => ( <>
{/* Feedback Communication Completion Section */}
{/* Back Link */}
arrow_back Back
{/* Form Header */}

Service Completed

Your income certificate has been downloaded.

{/* Success Message Block */}
check_circle
Income Certificate Downloaded. Your certificate has been saved to your device. View
{/* Gray Document Info Badge */}
income_certificate_2026.pdf 28 KB · PDF
{/* Action Buttons */}
{/* Footer Branding */}
Powered by -
); export default FeedbackCommunicationServiceCompletedExample2Demo; ``` Angular: ```html

Service Completed

Your income certificate has been downloaded.

check_circle
Income Certificate Downloaded. Your certificate has been saved to your device. View
income_certificate_2026.pdf 28 KB · PDF
```