# Application & Submission / Check Eligibility Eligibility check wizard that guides users through quick questions to determine if they qualify for a service before starting the full application. **Category:** Patterns **Storybook:** https://doc.ux4g.gov.in/web/?path=/story/ux4g-patterns-application-submission-check-eligibility--column ## Pattern variants - Column: https://doc.ux4g.gov.in/web/?path=/story/ux4g-patterns-application-submission-check-eligibility--column - Full Screen: https://doc.ux4g.gov.in/web/?path=/story/ux4g-patterns-application-submission-check-eligibility--full-screen - Card: https://doc.ux4g.gov.in/web/?path=/story/ux4g-patterns-application-submission-check-eligibility--card ## When to use this pattern Use Application & Submission / Check Eligibility 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 Application & Submission / Check Eligibility. Each example shows the rendered HTML, the equivalent React JSX, and the Angular template markup. ### 1. Card — Eligibility Check - Start Screen HTML: ```html

Income Certificate
Check Eligibility

Answer a few quick questions to see if you qualify.

  • 5 questions
  • ~2 minutes to complete
  • No documents needed at this step
Skip and Apply Directly

Already applied? Track your application →

``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample1Demo = () => ( <>
{/* Accessibility Bar */}
Government of India open_in_new
accessibility_new
{/* Card Layout: Purple BG + Centered White Card */}

Income Certificate
Check Eligibility

Answer a few quick questions to see if you qualify.

{/* Bullet List */}
  • 5 questions
  • ~2 minutes to complete
  • No documents needed at this step
{/* Actions */}
Skip and Apply Directly

Already applied? Track your application →

{/* Footer Branding */}
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample1Demo; ``` Angular: ```html

Income Certificate
Check Eligibility

Answer a few quick questions to see if you qualify.

  • 5 questions
  • ~2 minutes to complete
  • No documents needed at this step
Skip and Apply Directly

Already applied? Track your application →

``` ### 2. Card — Step 1 - Residency Status HTML: ```html
Question 1 of 5

Are you a resident of Maharashtra?

You must be a resident to apply for a state-issued income certificate.

Back
``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample2Demo = () => ( <>
{/* Accessibility Bar */}
Government of India open_in_new
accessibility_new
{/* Card Layout: Purple BG + Centered White Card */}
{/* Progress Bar */}
Question 1 of 5
{/* Question */}

Are you a resident of Maharashtra?

You must be a resident to apply for a state-issued income certificate.

{/* Radio Options */}
{/* Actions */}
Back
{/* Footer Branding */}
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample2Demo; ``` Angular: ```html
Question 1 of 5

Are you a resident of Maharashtra?

You must be a resident to apply for a state-issued income certificate.

Back
``` ### 3. Card — Step 2 - Household Income HTML: ```html
Question 2 of 5

What is your household annual income?

Include income from all earning members of your household.

Back
``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample3Demo = () => ( <>
Government of India open_in_new
accessibility_new
Question 2 of 5

What is your household annual income?

Include income from all earning members of your household.

Back
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample3Demo; ``` Angular: ```html
Question 2 of 5

What is your household annual income?

Include income from all earning members of your household.

Back
``` ### 4. Card — Step 3 - Household Head HTML: ```html
Question 3 of 5

Are you the head of the household?

The applicant should be the primary earning member.

Back
``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample4Demo = () => ( <>
Government of India open_in_new
accessibility_new
Question 3 of 5

Are you the head of the household?

The applicant should be the primary earning member.

Back
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample4Demo; ``` Angular: ```html
Question 3 of 5

Are you the head of the household?

The applicant should be the primary earning member.

Back
``` ### 5. Card — Step 4 - Aadhaar Verification HTML: ```html
Question 4 of 5

Do you have a valid Aadhaar card?

Aadhaar is required for identity verification during application.

Back
``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample5Demo = () => ( <>
Government of India open_in_new
accessibility_new
Question 4 of 5

Do you have a valid Aadhaar card?

Aadhaar is required for identity verification during application.

Back
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample5Demo; ``` Angular: ```html
Question 4 of 5

Do you have a valid Aadhaar card?

Aadhaar is required for identity verification during application.

Back
``` ### 6. Card — Step 5 - Previous Application HTML: ```html
Question 5 of 5

Have you applied for this certificate before in the last 1 year?

Back
``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample6Demo = () => ( <>
Government of India open_in_new
accessibility_new
Question 5 of 5

Have you applied for this certificate before in the last 1 year?

Back
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample6Demo; ``` Angular: ```html
Question 5 of 5

Have you applied for this certificate before in the last 1 year?

Back
``` ### 7. Card — Eligibility Result - Eligible HTML: ```html
done

You're Eligible!

All criteria have been met. You can now proceed to apply for this service.

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range check
No outstanding dues or penalties check
``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample7Demo = () => ( <>
{/* Accessibility Bar */}
Government of India open_in_new
accessibility_new
{/* Card Layout: Purple BG + Centered White Card */}
{/* Success Badge */}
done
{/* Success Heading */}

You're Eligible!

All criteria have been met. You can now proceed to apply for this service.

{/* Divider */}
{/* Eligibility Criteria List */}

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range check
No outstanding dues or penalties check
{/* Actions */}
{/* Footer Branding */}
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample7Demo; ``` Angular: ```html
done

You're Eligible!

All criteria have been met. You can now proceed to apply for this service.

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range check
No outstanding dues or penalties check
``` ### 8. Card — Eligibility Result - Not Eligible HTML: ```html
close

Not Eligible

Unfortunately, you do not meet all the required criteria for this service at this time.

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range close
No outstanding dues or penalties check
``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample8Demo = () => ( <>
{/* Accessibility Bar */}
Government of India open_in_new
accessibility_new
{/* Card Layout: Purple BG + Centered White Card */}
{/* Error Badge */}
close
{/* Error Heading */}

Not Eligible

Unfortunately, you do not meet all the required criteria for this service at this time.

{/* Divider */}
{/* Eligibility Criteria List */}

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range close
No outstanding dues or penalties check
{/* Actions */}
{/* Footer Branding */}
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample8Demo; ``` Angular: ```html
close

Not Eligible

Unfortunately, you do not meet all the required criteria for this service at this time.

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range close
No outstanding dues or penalties check
``` ### 9. Card — Eligibility Result - May Be Eligible HTML: ```html
warning

You May Be Eligible

One or more criteria could not be confirmed automatically. An officer will review and verify your eligibility.

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range question_mark
No outstanding dues or penalties check
``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample9Demo = () => ( <>
{/* Accessibility Bar */}
Government of India open_in_new
accessibility_new
{/* Card Layout: Purple BG + Centered White Card */}
{/* Warning Badge */}
warning
{/* Warning Heading */}

You May Be Eligible

One or more criteria could not be confirmed automatically. An officer will review and verify your eligibility.

{/* Divider */}
{/* Eligibility Criteria List */}

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range question_mark
No outstanding dues or penalties check
{/* Actions */}
{/* Footer Branding */}
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample9Demo; ``` Angular: ```html
warning

You May Be Eligible

One or more criteria could not be confirmed automatically. An officer will review and verify your eligibility.

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range question_mark
No outstanding dues or penalties check
``` ### 10. Column — Eligibility Check - Start Screen HTML: ```html
INCOME CERTIFICATE

Check Eligibility

Answer a few quick questions to see if you qualify for the Income Certificate.

Income Certificate
Check Eligibility

Answer a few quick questions to see if you qualify.

  • 5 questions
  • ~2 minutes to complete
  • No documents needed at this step
Skip and Apply Directly

Already applied? Track your application →

``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample10Demo = () => ( <>
{/* Accessibility Bar */}
Government of India open_in_new
accessibility_new
{/* Two Panel Layout */}
{/* Left Panel (Purple Sidebar) */}
INCOME CERTIFICATE

Check Eligibility

Answer a few quick questions to see if you qualify for the Income Certificate.

{/* Decorative rings/circles in background */}
{/* Right Panel (Content) */}

Income Certificate
Check Eligibility

Answer a few quick questions to see if you qualify.

{/* Bullet List */}
  • 5 questions
  • ~2 minutes to complete
  • No documents needed at this step
{/* Actions */}
Skip and Apply Directly

Already applied? Track your application →

{/* Footer Branding */}
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample10Demo; ``` Angular: ```html
INCOME CERTIFICATE

Check Eligibility

Answer a few quick questions to see if you qualify for the Income Certificate.

Income Certificate
Check Eligibility

Answer a few quick questions to see if you qualify.

  • 5 questions
  • ~2 minutes to complete
  • No documents needed at this step
Skip and Apply Directly

Already applied? Track your application →

``` ### 11. Column — Step 1 - Residency Status HTML: ```html
INCOME CERTIFICATE

Step 1 of 5

Confirm your residential status to proceed.

Question 1 of 5

Are you a resident of Maharashtra?

You must be a resident to apply for a state-issued income certificate.

Back
``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample11Demo = () => ( <>
{/* Accessibility Bar */}
Government of India open_in_new
accessibility_new
{/* Two Panel Layout */}
{/* Left Panel (Purple Sidebar) */}
INCOME CERTIFICATE

Step 1 of 5

Confirm your residential status to proceed.

{/* Decorative rings/circles in background */}
{/* Right Panel (Content) */}
{/* Progress Bar */}
Question 1 of 5
{/* Question */}

Are you a resident of Maharashtra?

You must be a resident to apply for a state-issued income certificate.

{/* Radio Options */}
{/* Actions */}
Back
{/* Footer Branding */}
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample11Demo; ``` Angular: ```html
INCOME CERTIFICATE

Step 1 of 5

Confirm your residential status to proceed.

Question 1 of 5

Are you a resident of Maharashtra?

You must be a resident to apply for a state-issued income certificate.

Back
``` ### 12. Column — Step 2 - Household Income HTML: ```html
INCOME CERTIFICATE

Step 2 of 5

Your household income determines your eligibility.

Question 2 of 5

What is your household annual income?

Include income from all earning members of your household.

Back
``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample12Demo = () => ( <>
{/* Accessibility Bar */}
Government of India open_in_new
accessibility_new
{/* Two Panel Layout */}
{/* Left Panel (Purple Sidebar) */}
INCOME CERTIFICATE

Step 2 of 5

Your household income determines your eligibility.

{/* Decorative rings/circles in background */}
{/* Right Panel (Content) */}
{/* Progress Bar */}
Question 2 of 5
{/* Question */}

What is your household annual income?

Include income from all earning members of your household.

{/* Radio Options */}
{/* Actions */}
Back
{/* Footer Branding */}
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample12Demo; ``` Angular: ```html
INCOME CERTIFICATE

Step 2 of 5

Your household income determines your eligibility.

Question 2 of 5

What is your household annual income?

Include income from all earning members of your household.

Back
``` ### 13. Column — Step 3 - Household Head HTML: ```html
INCOME CERTIFICATE

Step 3 of 5

The primary earning member must be the applicant.

Question 3 of 5

Are you the head of the household?

The applicant should be the primary earning member.

Back
``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample13Demo = () => ( <>
{/* Accessibility Bar */}
Government of India open_in_new
accessibility_new
{/* Two Panel Layout */}
{/* Left Panel (Purple Sidebar) */}
INCOME CERTIFICATE

Step 3 of 5

The primary earning member must be the applicant.

{/* Right Panel (Content) */}
{/* Progress Bar */}
Question 3 of 5
{/* Question */}

Are you the head of the household?

The applicant should be the primary earning member.

{/* Radio Options */}
{/* Actions */}
Back
{/* Footer Branding */}
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample13Demo; ``` Angular: ```html
INCOME CERTIFICATE

Step 3 of 5

The primary earning member must be the applicant.

Question 3 of 5

Are you the head of the household?

The applicant should be the primary earning member.

Back
``` ### 14. Column — Step 4 - Aadhaar Verification HTML: ```html
INCOME CERTIFICATE

Step 4 of 5

A valid Aadhaar is required for identity verification.

Question 4 of 5

Do you have a valid Aadhaar card?

Aadhaar is required for identity verification during application.

Back
``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample14Demo = () => ( <>
{/* Accessibility Bar */}
Government of India open_in_new
accessibility_new
{/* Two Panel Layout */}
{/* Left Panel (Purple Sidebar) */}
INCOME CERTIFICATE

Step 4 of 5

A valid Aadhaar is required for identity verification.

{/* Right Panel (Content) */}
{/* Progress Bar */}
Question 4 of 5
{/* Question */}

Do you have a valid Aadhaar card?

Aadhaar is required for identity verification during application.

{/* Radio Options */}
{/* Actions */}
Back
{/* Footer Branding */}
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample14Demo; ``` Angular: ```html
INCOME CERTIFICATE

Step 4 of 5

A valid Aadhaar is required for identity verification.

Question 4 of 5

Do you have a valid Aadhaar card?

Aadhaar is required for identity verification during application.

Back
``` ### 15. Column — Step 5 - Previous Application HTML: ```html
INCOME CERTIFICATE

Step 5 of 5

Almost done! One final question to confirm your eligibility.

Question 5 of 5

Have you applied for this certificate before in the last 1 year?

``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample15Demo = () => ( <>
{/* Accessibility Bar */}
Government of India open_in_new
accessibility_new
{/* Two Panel Layout */}
{/* Left Panel (Purple Sidebar) */}
INCOME CERTIFICATE

Step 5 of 5

Almost done! One final question to confirm your eligibility.

{/* Right Panel (Content) */}
{/* Progress Bar */}
Question 5 of 5
{/* Question */}

Have you applied for this certificate before in the last 1 year?

{/* Radio Options */}
{/* Actions */}
{/* Footer Branding */}
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample15Demo; ``` Angular: ```html
INCOME CERTIFICATE

Step 5 of 5

Almost done! One final question to confirm your eligibility.

Question 5 of 5

Have you applied for this certificate before in the last 1 year?

``` ### 16. Column — Eligibility Result - Eligible HTML: ```html
INCOME CERTIFICATE

You're Eligible!

All criteria have been met. You can now proceed to apply for the Income Certificate.

done

You're Eligible!

All criteria have been met. You can now proceed to apply for this service.

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range check
No outstanding dues or penalties check
``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample16Demo = () => ( <>
{/* Accessibility Bar */}
Government of India open_in_new
accessibility_new
{/* Two Panel Layout */}
{/* Left Panel (Purple Sidebar) */}
INCOME CERTIFICATE

You're Eligible!

All criteria have been met. You can now proceed to apply for the Income Certificate.

{/* Right Panel (Content) */}
{/* Success Badge */}
done
{/* Success Heading */}

You're Eligible!

All criteria have been met. You can now proceed to apply for this service.

{/* Divider */}
{/* Eligibility Criteria List */}

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range check
No outstanding dues or penalties check
{/* Actions */}
{/* Footer Branding */}
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample16Demo; ``` Angular: ```html
INCOME CERTIFICATE

You're Eligible!

All criteria have been met. You can now proceed to apply for the Income Certificate.

done

You're Eligible!

All criteria have been met. You can now proceed to apply for this service.

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range check
No outstanding dues or penalties check
``` ### 17. Column — Eligibility Result - Not Eligible HTML: ```html
INCOME CERTIFICATE

Not Eligible

Unfortunately, you do not meet all the required criteria for this service at this time.

close

Not Eligible

Unfortunately, you do not meet all the required criteria for this service at this time.

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range close
No outstanding dues or penalties check
``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample17Demo = () => ( <>
{/* Accessibility Bar */}
Government of India open_in_new
accessibility_new
{/* Two Panel Layout */}
{/* Left Panel (Purple Sidebar) */}
INCOME CERTIFICATE

Not Eligible

Unfortunately, you do not meet all the required criteria for this service at this time.

{/* Right Panel (Content) */}
{/* Error Badge */}
close
{/* Error Heading */}

Not Eligible

Unfortunately, you do not meet all the required criteria for this service at this time.

{/* Divider */}
{/* Eligibility Criteria List */}

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range close
No outstanding dues or penalties check
{/* Actions */}
{/* Footer Branding */}
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample17Demo; ``` Angular: ```html
INCOME CERTIFICATE

Not Eligible

Unfortunately, you do not meet all the required criteria for this service at this time.

close

Not Eligible

Unfortunately, you do not meet all the required criteria for this service at this time.

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range close
No outstanding dues or penalties check
``` ### 18. Column — Eligibility Result - May Be Eligible HTML: ```html
INCOME CERTIFICATE

You May Be Eligible

One or more criteria could not be confirmed automatically. An officer will review and verify your eligibility.

warning

You May Be Eligible

One or more criteria could not be confirmed automatically. An officer will review and verify your eligibility.

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range question_mark
No outstanding dues or penalties check
``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample18Demo = () => ( <>
{/* Accessibility Bar */}
Government of India open_in_new
accessibility_new
{/* Two Panel Layout */}
{/* Left Panel (Purple Sidebar) */}
INCOME CERTIFICATE

You May Be Eligible

One or more criteria could not be confirmed automatically. An officer will review and verify your eligibility.

{/* Right Panel (Content) */}
{/* Warning Badge */}
warning
{/* Warning Heading */}

You May Be Eligible

One or more criteria could not be confirmed automatically. An officer will review and verify your eligibility.

{/* Divider */}
{/* Eligibility Criteria List */}

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range question_mark
No outstanding dues or penalties check
{/* Actions */}
{/* Footer Branding */}
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample18Demo; ``` Angular: ```html
INCOME CERTIFICATE

You May Be Eligible

One or more criteria could not be confirmed automatically. An officer will review and verify your eligibility.

warning

You May Be Eligible

One or more criteria could not be confirmed automatically. An officer will review and verify your eligibility.

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range question_mark
No outstanding dues or penalties check
``` ### 19. Full Screen — Eligibility Check - Start Screen HTML: ```html

Income Certificate
Check Eligibility

Answer a few quick questions to see if you qualify.

  • 5 questions
  • ~2 minutes to complete
  • No documents needed at this step
Skip and Apply Directly

Already applied? Track your application →

``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample19Demo = () => ( <>
{/* Accessibility Bar */}
Government of India open_in_new
accessibility_new
{/* Full Screen Layout: Purple BG + Centered White Card */}

Income Certificate
Check Eligibility

Answer a few quick questions to see if you qualify.

{/* Bullet List */}
  • 5 questions
  • ~2 minutes to complete
  • No documents needed at this step
{/* Actions */}
Skip and Apply Directly

Already applied? Track your application →

{/* Footer Branding */}
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample19Demo; ``` Angular: ```html

Income Certificate
Check Eligibility

Answer a few quick questions to see if you qualify.

  • 5 questions
  • ~2 minutes to complete
  • No documents needed at this step
Skip and Apply Directly

Already applied? Track your application →

``` ### 20. Full Screen — Step 1 - Residency Status HTML: ```html
Question 1 of 5

Are you a resident of Maharashtra?

You must be a resident to apply for a state-issued income certificate.

Back
``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample20Demo = () => ( <>
{/* Accessibility Bar */}
Government of India open_in_new
accessibility_new
{/* Full Screen Layout: Purple BG + Centered White Card */}
{/* Progress Bar */}
Question 1 of 5
{/* Question */}

Are you a resident of Maharashtra?

You must be a resident to apply for a state-issued income certificate.

{/* Radio Options */}
{/* Actions */}
Back
{/* Footer Branding */}
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample20Demo; ``` Angular: ```html
Question 1 of 5

Are you a resident of Maharashtra?

You must be a resident to apply for a state-issued income certificate.

Back
``` ### 21. Full Screen — Step 2 - Household Income HTML: ```html
Question 2 of 5

What is your household annual income?

Include income from all earning members of your household.

Back
``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample21Demo = () => ( <>
Government of India open_in_new
accessibility_new
Question 2 of 5

What is your household annual income?

Include income from all earning members of your household.

Back
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample21Demo; ``` Angular: ```html
Question 2 of 5

What is your household annual income?

Include income from all earning members of your household.

Back
``` ### 22. Full Screen — Step 3 - Household Head HTML: ```html
Question 3 of 5

Are you the head of the household?

The applicant should be the primary earning member.

Back
``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample22Demo = () => ( <>
Government of India open_in_new
accessibility_new
Question 3 of 5

Are you the head of the household?

The applicant should be the primary earning member.

Back
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample22Demo; ``` Angular: ```html
Question 3 of 5

Are you the head of the household?

The applicant should be the primary earning member.

Back
``` ### 23. Full Screen — Step 4 - Aadhaar Verification HTML: ```html
Question 4 of 5

Do you have a valid Aadhaar card?

Aadhaar is required for identity verification during application.

Back
``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample23Demo = () => ( <>
Government of India open_in_new
accessibility_new
Question 4 of 5

Do you have a valid Aadhaar card?

Aadhaar is required for identity verification during application.

Back
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample23Demo; ``` Angular: ```html
Question 4 of 5

Do you have a valid Aadhaar card?

Aadhaar is required for identity verification during application.

Back
``` ### 24. Full Screen — Step 5 - Previous Application HTML: ```html
Question 5 of 5

Have you applied for this certificate before in the last 1 year?

Back
``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample24Demo = () => ( <>
Government of India open_in_new
accessibility_new
Question 5 of 5

Have you applied for this certificate before in the last 1 year?

Back
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample24Demo; ``` Angular: ```html
Question 5 of 5

Have you applied for this certificate before in the last 1 year?

Back
``` ### 25. Full Screen — Eligibility Result - Eligible HTML: ```html
done

You're Eligible!

All criteria have been met. You can now proceed to apply for this service.

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range check
No outstanding dues or penalties check
``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample25Demo = () => ( <>
{/* Accessibility Bar */}
Government of India open_in_new
accessibility_new
{/* Full Screen Layout: Purple BG + Centered White Card */}
{/* Success Badge */}
done
{/* Success Heading */}

You're Eligible!

All criteria have been met. You can now proceed to apply for this service.

{/* Divider */}
{/* Eligibility Criteria List */}

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range check
No outstanding dues or penalties check
{/* Actions */}
{/* Footer Branding */}
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample25Demo; ``` Angular: ```html
done

You're Eligible!

All criteria have been met. You can now proceed to apply for this service.

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range check
No outstanding dues or penalties check
``` ### 26. Full Screen — Eligibility Result - Not Eligible HTML: ```html
close

Not Eligible

Unfortunately, you do not meet all the required criteria for this service at this time.

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range close
No outstanding dues or penalties check
``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample26Demo = () => ( <>
{/* Accessibility Bar */}
Government of India open_in_new
accessibility_new
{/* Full Screen Layout: Purple BG + Centered White Card */}
{/* Error Badge */}
close
{/* Error Heading */}

Not Eligible

Unfortunately, you do not meet all the required criteria for this service at this time.

{/* Divider */}
{/* Eligibility Criteria List */}

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range close
No outstanding dues or penalties check
{/* Actions */}
{/* Footer Branding */}
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample26Demo; ``` Angular: ```html
close

Not Eligible

Unfortunately, you do not meet all the required criteria for this service at this time.

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range close
No outstanding dues or penalties check
``` ### 27. Full Screen — Eligibility Result - May Be Eligible HTML: ```html
warning

You May Be Eligible

One or more criteria could not be confirmed automatically. An officer will review and verify your eligibility.

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range question_mark
No outstanding dues or penalties check
``` React: ```jsx import React from 'react'; const ApplicationSubmissionCheckEligibilityExample27Demo = () => ( <>
{/* Accessibility Bar */}
Government of India open_in_new
accessibility_new
{/* Full Screen Layout: Purple BG + Centered White Card */}
{/* Warning Badge */}
warning
{/* Warning Heading */}

You May Be Eligible

One or more criteria could not be confirmed automatically. An officer will review and verify your eligibility.

{/* Divider */}
{/* Eligibility Criteria List */}

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range question_mark
No outstanding dues or penalties check
{/* Actions */}
{/* Footer Branding */}
Powered by -
); export default ApplicationSubmissionCheckEligibilityExample27Demo; ``` Angular: ```html
warning

You May Be Eligible

One or more criteria could not be confirmed automatically. An officer will review and verify your eligibility.

Eligibility Criteria

Age requirement met (18 years or above) check
Valid government-issued ID submitted check
Residential address confirmed check
Income within eligible range question_mark
No outstanding dues or penalties check
```