# Feedback & Communication / Form Identity Verification Aadhaar-based identity verification with input formatting and helper feedback **Category:** Patterns **Storybook:** https://doc.ux4g.gov.in/web/?path=/story/ux4g-patterns-feedback-communication-form-identity-verification--introduction ## Pattern variants - Form Identity Verification: https://doc.ux4g.gov.in/web/?path=/story/ux4g-patterns-feedback-communication-form-identity-verification--form-identity-verification ## When to use this pattern Use Feedback & Communication / Form Identity Verification 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 / Form Identity Verification. Each example shows the rendered HTML, the equivalent React JSX, and the Angular template markup. ### 1. Form Identity Verification — Identity Verification - Aadhaar Input HTML: ```html

Identity Verification

Enter your Aadhaar number to auto-fill your personal details.

info Enter 12 digits, we'll prefill your name and address
``` React: ```jsx import React from 'react'; const FeedbackCommunicationFormIdentityVerificationExample1Demo = () => ( <>
arrow_back Back

Identity Verification

Enter your Aadhaar number to auto-fill your personal details.

info Enter 12 digits, we'll prefill your name and address
); export default FeedbackCommunicationFormIdentityVerificationExample1Demo; ``` Angular: ```html

Identity Verification

Enter your Aadhaar number to auto-fill your personal details.

info Enter 12 digits, we'll prefill your name and address
``` ### 2. Introduction — Introduction HTML: ```html
Patterns

Form Identity Verification

Aadhaar-based identity verification with input formatting and helper feedback

badge

Identity Verification

Aadhaar number entry with auto-formatting, helper text explaining auto-fill behaviour, and continue action.

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

Form Identity Verification

Aadhaar-based identity verification with input formatting and helper feedback

badge

Identity Verification

Aadhaar number entry with auto-formatting, helper text explaining auto-fill behaviour, and continue action.

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

Form Identity Verification

Aadhaar-based identity verification with input formatting and helper feedback

badge

Identity Verification

Aadhaar number entry with auto-formatting, helper text explaining auto-fill behaviour, and continue action.

```