├── README.md ├── ScreenShots ├── .img ├── Screenshot (7).png ├── Screenshot (8).png ├── Web capture_11-1-2024_143233_localhost.jpeg ├── Web capture_11-1-2024_143259_localhost.jpeg ├── Web capture_11-1-2024_143359_localhost.jpeg ├── Web capture_11-1-2024_143414_localhost.jpeg ├── Web capture_11-1-2024_143434_localhost.jpeg ├── Web capture_11-1-2024_143456_localhost.jpeg └── login page.PNG ├── emp_backend ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── demo │ │ │ ├── EmpBackendApplication.java │ │ │ ├── adminController │ │ │ └── adminController.java │ │ │ ├── adminModel │ │ │ └── adminModel.java │ │ │ ├── adminRepository │ │ │ └── adminRepository.java │ │ │ ├── controller │ │ │ └── EmployeeController.java │ │ │ ├── exception │ │ │ └── ResourceNotFoundException.java │ │ │ ├── model │ │ │ └── Employee.java │ │ │ └── repository │ │ │ └── EmployeeRepository.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── example │ └── demo │ └── EmpBackendApplicationTests.java └── employee frontend final ├── .editorconfig ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── README.md ├── angular.json ├── package-lock.json ├── package.json ├── src ├── app │ ├── add-employee │ │ ├── add-employee.component.css │ │ ├── add-employee.component.html │ │ ├── add-employee.component.spec.ts │ │ └── add-employee.component.ts │ ├── admin-login │ │ ├── admin-login.component.css │ │ ├── admin-login.component.html │ │ ├── admin-login.component.spec.ts │ │ └── admin-login.component.ts │ ├── app-routing.module.ts │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── employee-list │ │ ├── employee-list.component.css │ │ ├── employee-list.component.html │ │ ├── employee-list.component.spec.ts │ │ └── employee-list.component.ts │ ├── employee.service.spec.ts │ ├── employee.service.ts │ ├── employee.spec.ts │ ├── employee.ts │ ├── home │ │ ├── home.component.css │ │ ├── home.component.html │ │ ├── home.component.spec.ts │ │ └── home.component.ts │ ├── show-details │ │ ├── show-details.component.css │ │ ├── show-details.component.html │ │ ├── show-details.component.spec.ts │ │ └── show-details.component.ts │ └── update-employee │ │ ├── update-employee.component.css │ │ ├── update-employee.component.html │ │ ├── update-employee.component.spec.ts │ │ └── update-employee.component.ts ├── assets │ ├── .gitkeep │ ├── 1.jpg │ ├── 2.jpg │ ├── about-5.webp │ ├── download.jpg │ ├── gallery-3.webp │ ├── gallery-5.webp │ ├── login.jpg │ ├── noBgLogin.png │ ├── team1.jpg │ ├── team2.jpg │ └── team3.jpg ├── favicon.ico ├── index.html ├── main.ts └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShots/.img: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ScreenShots/Screenshot (7).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/ScreenShots/Screenshot (7).png -------------------------------------------------------------------------------- /ScreenShots/Screenshot (8).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/ScreenShots/Screenshot (8).png -------------------------------------------------------------------------------- /ScreenShots/Web capture_11-1-2024_143233_localhost.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/ScreenShots/Web capture_11-1-2024_143233_localhost.jpeg -------------------------------------------------------------------------------- /ScreenShots/Web capture_11-1-2024_143259_localhost.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/ScreenShots/Web capture_11-1-2024_143259_localhost.jpeg -------------------------------------------------------------------------------- /ScreenShots/Web capture_11-1-2024_143359_localhost.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/ScreenShots/Web capture_11-1-2024_143359_localhost.jpeg -------------------------------------------------------------------------------- /ScreenShots/Web capture_11-1-2024_143414_localhost.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/ScreenShots/Web capture_11-1-2024_143414_localhost.jpeg -------------------------------------------------------------------------------- /ScreenShots/Web capture_11-1-2024_143434_localhost.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/ScreenShots/Web capture_11-1-2024_143434_localhost.jpeg -------------------------------------------------------------------------------- /ScreenShots/Web capture_11-1-2024_143456_localhost.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/ScreenShots/Web capture_11-1-2024_143456_localhost.jpeg -------------------------------------------------------------------------------- /ScreenShots/login page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/ScreenShots/login page.PNG -------------------------------------------------------------------------------- /emp_backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/emp_backend/.gitignore -------------------------------------------------------------------------------- /emp_backend/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/emp_backend/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /emp_backend/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/emp_backend/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /emp_backend/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/emp_backend/mvnw -------------------------------------------------------------------------------- /emp_backend/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/emp_backend/mvnw.cmd -------------------------------------------------------------------------------- /emp_backend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/emp_backend/pom.xml -------------------------------------------------------------------------------- /emp_backend/src/main/java/com/example/demo/EmpBackendApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/emp_backend/src/main/java/com/example/demo/EmpBackendApplication.java -------------------------------------------------------------------------------- /emp_backend/src/main/java/com/example/demo/adminController/adminController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/emp_backend/src/main/java/com/example/demo/adminController/adminController.java -------------------------------------------------------------------------------- /emp_backend/src/main/java/com/example/demo/adminModel/adminModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/emp_backend/src/main/java/com/example/demo/adminModel/adminModel.java -------------------------------------------------------------------------------- /emp_backend/src/main/java/com/example/demo/adminRepository/adminRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/emp_backend/src/main/java/com/example/demo/adminRepository/adminRepository.java -------------------------------------------------------------------------------- /emp_backend/src/main/java/com/example/demo/controller/EmployeeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/emp_backend/src/main/java/com/example/demo/controller/EmployeeController.java -------------------------------------------------------------------------------- /emp_backend/src/main/java/com/example/demo/exception/ResourceNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/emp_backend/src/main/java/com/example/demo/exception/ResourceNotFoundException.java -------------------------------------------------------------------------------- /emp_backend/src/main/java/com/example/demo/model/Employee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/emp_backend/src/main/java/com/example/demo/model/Employee.java -------------------------------------------------------------------------------- /emp_backend/src/main/java/com/example/demo/repository/EmployeeRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/emp_backend/src/main/java/com/example/demo/repository/EmployeeRepository.java -------------------------------------------------------------------------------- /emp_backend/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/emp_backend/src/main/resources/application.properties -------------------------------------------------------------------------------- /emp_backend/src/test/java/com/example/demo/EmpBackendApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/emp_backend/src/test/java/com/example/demo/EmpBackendApplicationTests.java -------------------------------------------------------------------------------- /employee frontend final/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/.editorconfig -------------------------------------------------------------------------------- /employee frontend final/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/.gitignore -------------------------------------------------------------------------------- /employee frontend final/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/.vscode/extensions.json -------------------------------------------------------------------------------- /employee frontend final/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/.vscode/launch.json -------------------------------------------------------------------------------- /employee frontend final/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/.vscode/tasks.json -------------------------------------------------------------------------------- /employee frontend final/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/README.md -------------------------------------------------------------------------------- /employee frontend final/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/angular.json -------------------------------------------------------------------------------- /employee frontend final/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/package-lock.json -------------------------------------------------------------------------------- /employee frontend final/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/package.json -------------------------------------------------------------------------------- /employee frontend final/src/app/add-employee/add-employee.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/add-employee/add-employee.component.css -------------------------------------------------------------------------------- /employee frontend final/src/app/add-employee/add-employee.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/add-employee/add-employee.component.html -------------------------------------------------------------------------------- /employee frontend final/src/app/add-employee/add-employee.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/add-employee/add-employee.component.spec.ts -------------------------------------------------------------------------------- /employee frontend final/src/app/add-employee/add-employee.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/add-employee/add-employee.component.ts -------------------------------------------------------------------------------- /employee frontend final/src/app/admin-login/admin-login.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/admin-login/admin-login.component.css -------------------------------------------------------------------------------- /employee frontend final/src/app/admin-login/admin-login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/admin-login/admin-login.component.html -------------------------------------------------------------------------------- /employee frontend final/src/app/admin-login/admin-login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/admin-login/admin-login.component.spec.ts -------------------------------------------------------------------------------- /employee frontend final/src/app/admin-login/admin-login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/admin-login/admin-login.component.ts -------------------------------------------------------------------------------- /employee frontend final/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /employee frontend final/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/app.component.css -------------------------------------------------------------------------------- /employee frontend final/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/app.component.html -------------------------------------------------------------------------------- /employee frontend final/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /employee frontend final/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/app.component.ts -------------------------------------------------------------------------------- /employee frontend final/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/app.module.ts -------------------------------------------------------------------------------- /employee frontend final/src/app/employee-list/employee-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/employee-list/employee-list.component.css -------------------------------------------------------------------------------- /employee frontend final/src/app/employee-list/employee-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/employee-list/employee-list.component.html -------------------------------------------------------------------------------- /employee frontend final/src/app/employee-list/employee-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/employee-list/employee-list.component.spec.ts -------------------------------------------------------------------------------- /employee frontend final/src/app/employee-list/employee-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/employee-list/employee-list.component.ts -------------------------------------------------------------------------------- /employee frontend final/src/app/employee.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/employee.service.spec.ts -------------------------------------------------------------------------------- /employee frontend final/src/app/employee.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/employee.service.ts -------------------------------------------------------------------------------- /employee frontend final/src/app/employee.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/employee.spec.ts -------------------------------------------------------------------------------- /employee frontend final/src/app/employee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/employee.ts -------------------------------------------------------------------------------- /employee frontend final/src/app/home/home.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/home/home.component.css -------------------------------------------------------------------------------- /employee frontend final/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/home/home.component.html -------------------------------------------------------------------------------- /employee frontend final/src/app/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/home/home.component.spec.ts -------------------------------------------------------------------------------- /employee frontend final/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/home/home.component.ts -------------------------------------------------------------------------------- /employee frontend final/src/app/show-details/show-details.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/show-details/show-details.component.css -------------------------------------------------------------------------------- /employee frontend final/src/app/show-details/show-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/show-details/show-details.component.html -------------------------------------------------------------------------------- /employee frontend final/src/app/show-details/show-details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/show-details/show-details.component.spec.ts -------------------------------------------------------------------------------- /employee frontend final/src/app/show-details/show-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/show-details/show-details.component.ts -------------------------------------------------------------------------------- /employee frontend final/src/app/update-employee/update-employee.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/update-employee/update-employee.component.css -------------------------------------------------------------------------------- /employee frontend final/src/app/update-employee/update-employee.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/update-employee/update-employee.component.html -------------------------------------------------------------------------------- /employee frontend final/src/app/update-employee/update-employee.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/update-employee/update-employee.component.spec.ts -------------------------------------------------------------------------------- /employee frontend final/src/app/update-employee/update-employee.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/app/update-employee/update-employee.component.ts -------------------------------------------------------------------------------- /employee frontend final/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /employee frontend final/src/assets/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/assets/1.jpg -------------------------------------------------------------------------------- /employee frontend final/src/assets/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/assets/2.jpg -------------------------------------------------------------------------------- /employee frontend final/src/assets/about-5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/assets/about-5.webp -------------------------------------------------------------------------------- /employee frontend final/src/assets/download.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/assets/download.jpg -------------------------------------------------------------------------------- /employee frontend final/src/assets/gallery-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/assets/gallery-3.webp -------------------------------------------------------------------------------- /employee frontend final/src/assets/gallery-5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/assets/gallery-5.webp -------------------------------------------------------------------------------- /employee frontend final/src/assets/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/assets/login.jpg -------------------------------------------------------------------------------- /employee frontend final/src/assets/noBgLogin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/assets/noBgLogin.png -------------------------------------------------------------------------------- /employee frontend final/src/assets/team1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/assets/team1.jpg -------------------------------------------------------------------------------- /employee frontend final/src/assets/team2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/assets/team2.jpg -------------------------------------------------------------------------------- /employee frontend final/src/assets/team3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/assets/team3.jpg -------------------------------------------------------------------------------- /employee frontend final/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/favicon.ico -------------------------------------------------------------------------------- /employee frontend final/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/index.html -------------------------------------------------------------------------------- /employee frontend final/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/main.ts -------------------------------------------------------------------------------- /employee frontend final/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/src/styles.css -------------------------------------------------------------------------------- /employee frontend final/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/tsconfig.app.json -------------------------------------------------------------------------------- /employee frontend final/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/tsconfig.json -------------------------------------------------------------------------------- /employee frontend final/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityasurya4103/employee-management-system-angular-spring-boot-mysql/HEAD/employee frontend final/tsconfig.spec.json --------------------------------------------------------------------------------