This project was generated with Angular CLI version 18.2.6.
- 
Single Page Application with Multiple Components: 
- 
User List with Search and Filter Options: - The form-listcomponent allows users to search and filter the displayed list of users.
 
- The 
- 
Form for Adding and Editing Users: - The add-formcomponent provides a form to create or edit user details.
- Includes validation for required fields and email format.
 
- The 
- 
Pagination and Sorting: - Implemented in the form-listcomponent for better user management.
 
- Implemented in the 
- 
Home Page with Shared Components: - A homepage is created under theappdirectory.
- A sharedpage contains two components:- navbar: Displays the navigation bar.
- footer: Displays the footer.
 
 
- A 
Run ng serve for a dev server. Navigate to http://localhost:4200/. The application will automatically reload if you change any of the source files.
Run ng generate component component-name to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module.
Run ng build to build the project. The build artifacts will be stored in the dist/ directory.
Run ng test to execute the unit tests via Karma.
Run ng e2e to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
src/
  app/
    home/
      home.component.ts
      home.component.html
      home.component.css
    shared/
      navbar/
        navbar.component.ts
        navbar.component.html
        navbar.component.css
      footer/
        footer.component.ts
        footer.component.html
        footer.component.css
    pages/
      add-form/
        add-form.component.ts
        add-form.component.html
        add-form.component.css
      form-list/
        form-list.component.ts
        form-list.component.html
        form-list.component.css
To get more help on the Angular CLI use ng help or go check out the Angular CLI Overview and Command Reference page.

