├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ └── feature.yml └── PULL_REQUEST_TEMPLATE.md ├── Back ├── Server.js ├── controller │ ├── medicineController.js │ └── userController.js ├── models │ ├── medicine.js │ └── user.js ├── package-lock.json ├── package.json └── routes │ └── PharmaLab.routes.js ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Front ├── .editorconfig ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── README.md ├── angular.json ├── cypress.config.ts ├── cypress │ ├── e2e │ │ ├── add-medicine.spec.cy.ts │ │ ├── e2e.spec.cy.ts │ │ ├── list-medicines.spec.cy.ts │ │ ├── login.spec.cy.ts │ │ ├── register.spec.cy.ts │ │ ├── user-profil.spec.cy.ts │ │ └── users.spec.cy.ts │ ├── fixtures │ │ └── example.json │ └── support │ │ ├── commands.ts │ │ └── e2e.ts ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── add-medicine │ │ │ ├── add-medicine.component.css │ │ │ ├── add-medicine.component.html │ │ │ ├── add-medicine.component.spec.ts │ │ │ └── add-medicine.component.ts │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── emitters │ │ │ ├── emitters.spec.ts │ │ │ └── emitters.ts │ │ ├── home-page │ │ │ ├── home-page.component.css │ │ │ ├── home-page.component.html │ │ │ ├── home-page.component.spec.ts │ │ │ └── home-page.component.ts │ │ ├── laboratories │ │ │ ├── laboratories.component.css │ │ │ ├── laboratories.component.html │ │ │ ├── laboratories.component.spec.ts │ │ │ └── laboratories.component.ts │ │ ├── list-medicines │ │ │ ├── list-medicines.component.css │ │ │ ├── list-medicines.component.html │ │ │ ├── list-medicines.component.spec.ts │ │ │ └── list-medicines.component.ts │ │ ├── list-meds-admin │ │ │ ├── list-meds-admin.component.css │ │ │ ├── list-meds-admin.component.html │ │ │ ├── list-meds-admin.component.spec.ts │ │ │ └── list-meds-admin.component.ts │ │ ├── login │ │ │ ├── login.component.css │ │ │ ├── login.component.html │ │ │ ├── login.component.spec.ts │ │ │ └── login.component.ts │ │ ├── medicine-details │ │ │ ├── medicine-details.component.css │ │ │ ├── medicine-details.component.html │ │ │ ├── medicine-details.component.spec.ts │ │ │ └── medicine-details.component.ts │ │ ├── medicines │ │ │ ├── medicines.component.css │ │ │ ├── medicines.component.html │ │ │ ├── medicines.component.spec.ts │ │ │ └── medicines.component.ts │ │ ├── model │ │ │ ├── medicine.spec.ts │ │ │ ├── medicine.ts │ │ │ ├── user.spec.ts │ │ │ └── user.ts │ │ ├── navbar │ │ │ ├── navbar.component.css │ │ │ ├── navbar.component.html │ │ │ ├── navbar.component.spec.ts │ │ │ └── navbar.component.ts │ │ ├── purchase-history │ │ │ ├── purchase-history.component.css │ │ │ ├── purchase-history.component.html │ │ │ ├── purchase-history.component.spec.ts │ │ │ └── purchase-history.component.ts │ │ ├── register │ │ │ ├── register.component.css │ │ │ ├── register.component.html │ │ │ ├── register.component.spec.ts │ │ │ └── register.component.ts │ │ ├── services │ │ │ ├── medicine-service.service.spec.ts │ │ │ ├── medicine-service.service.ts │ │ │ ├── navbar.service.spec.ts │ │ │ ├── navbar.service.ts │ │ │ ├── user-service.service.spec.ts │ │ │ └── user-service.service.ts │ │ ├── user-profil │ │ │ ├── user-profil.component.css │ │ │ ├── user-profil.component.html │ │ │ ├── user-profil.component.spec.ts │ │ │ └── user-profil.component.ts │ │ ├── users-profil │ │ │ ├── users-profil.component.css │ │ │ ├── users-profil.component.html │ │ │ ├── users-profil.component.spec.ts │ │ │ └── users-profil.component.ts │ │ └── users │ │ │ ├── users.component.css │ │ │ ├── users.component.html │ │ │ ├── users.component.spec.ts │ │ │ └── users.component.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── Laboratory.gif │ │ ├── Pharmacist-cuate.png │ │ ├── Pharmacist.gif │ │ ├── Pharmacy-Illustration-AI.jpg │ │ ├── Remedy-rafiki.png │ │ ├── biotech_FILL0_wght400_GRAD0_opsz24.svg │ │ ├── chemistry lab.gif │ │ ├── cool-background.png │ │ └── medication_FILL0_wght400_GRAD0_opsz24.svg │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ └── styles.css ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── LICENSE.md ├── README.md ├── SECURITY.md ├── SUPPORT.md └── docs └── REPORT.pdf /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: aziz-zina 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Back/Server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Back/Server.js -------------------------------------------------------------------------------- /Back/controller/medicineController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Back/controller/medicineController.js -------------------------------------------------------------------------------- /Back/controller/userController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Back/controller/userController.js -------------------------------------------------------------------------------- /Back/models/medicine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Back/models/medicine.js -------------------------------------------------------------------------------- /Back/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Back/models/user.js -------------------------------------------------------------------------------- /Back/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Back/package-lock.json -------------------------------------------------------------------------------- /Back/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Back/package.json -------------------------------------------------------------------------------- /Back/routes/PharmaLab.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Back/routes/PharmaLab.routes.js -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Front/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/.editorconfig -------------------------------------------------------------------------------- /Front/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/.vscode/extensions.json -------------------------------------------------------------------------------- /Front/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/.vscode/launch.json -------------------------------------------------------------------------------- /Front/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/.vscode/tasks.json -------------------------------------------------------------------------------- /Front/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/README.md -------------------------------------------------------------------------------- /Front/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/angular.json -------------------------------------------------------------------------------- /Front/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/cypress.config.ts -------------------------------------------------------------------------------- /Front/cypress/e2e/add-medicine.spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/cypress/e2e/add-medicine.spec.cy.ts -------------------------------------------------------------------------------- /Front/cypress/e2e/e2e.spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/cypress/e2e/e2e.spec.cy.ts -------------------------------------------------------------------------------- /Front/cypress/e2e/list-medicines.spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/cypress/e2e/list-medicines.spec.cy.ts -------------------------------------------------------------------------------- /Front/cypress/e2e/login.spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/cypress/e2e/login.spec.cy.ts -------------------------------------------------------------------------------- /Front/cypress/e2e/register.spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/cypress/e2e/register.spec.cy.ts -------------------------------------------------------------------------------- /Front/cypress/e2e/user-profil.spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/cypress/e2e/user-profil.spec.cy.ts -------------------------------------------------------------------------------- /Front/cypress/e2e/users.spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/cypress/e2e/users.spec.cy.ts -------------------------------------------------------------------------------- /Front/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/cypress/fixtures/example.json -------------------------------------------------------------------------------- /Front/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/cypress/support/commands.ts -------------------------------------------------------------------------------- /Front/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/cypress/support/e2e.ts -------------------------------------------------------------------------------- /Front/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/package-lock.json -------------------------------------------------------------------------------- /Front/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/package.json -------------------------------------------------------------------------------- /Front/src/app/add-medicine/add-medicine.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/add-medicine/add-medicine.component.css -------------------------------------------------------------------------------- /Front/src/app/add-medicine/add-medicine.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/add-medicine/add-medicine.component.html -------------------------------------------------------------------------------- /Front/src/app/add-medicine/add-medicine.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/add-medicine/add-medicine.component.spec.ts -------------------------------------------------------------------------------- /Front/src/app/add-medicine/add-medicine.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/add-medicine/add-medicine.component.ts -------------------------------------------------------------------------------- /Front/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /Front/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Front/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/app.component.html -------------------------------------------------------------------------------- /Front/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Front/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/app.component.ts -------------------------------------------------------------------------------- /Front/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/app.module.ts -------------------------------------------------------------------------------- /Front/src/app/emitters/emitters.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/emitters/emitters.spec.ts -------------------------------------------------------------------------------- /Front/src/app/emitters/emitters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/emitters/emitters.ts -------------------------------------------------------------------------------- /Front/src/app/home-page/home-page.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/home-page/home-page.component.css -------------------------------------------------------------------------------- /Front/src/app/home-page/home-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/home-page/home-page.component.html -------------------------------------------------------------------------------- /Front/src/app/home-page/home-page.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/home-page/home-page.component.spec.ts -------------------------------------------------------------------------------- /Front/src/app/home-page/home-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/home-page/home-page.component.ts -------------------------------------------------------------------------------- /Front/src/app/laboratories/laboratories.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/laboratories/laboratories.component.css -------------------------------------------------------------------------------- /Front/src/app/laboratories/laboratories.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/laboratories/laboratories.component.html -------------------------------------------------------------------------------- /Front/src/app/laboratories/laboratories.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/laboratories/laboratories.component.spec.ts -------------------------------------------------------------------------------- /Front/src/app/laboratories/laboratories.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/laboratories/laboratories.component.ts -------------------------------------------------------------------------------- /Front/src/app/list-medicines/list-medicines.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/list-medicines/list-medicines.component.css -------------------------------------------------------------------------------- /Front/src/app/list-medicines/list-medicines.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/list-medicines/list-medicines.component.html -------------------------------------------------------------------------------- /Front/src/app/list-medicines/list-medicines.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/list-medicines/list-medicines.component.spec.ts -------------------------------------------------------------------------------- /Front/src/app/list-medicines/list-medicines.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/list-medicines/list-medicines.component.ts -------------------------------------------------------------------------------- /Front/src/app/list-meds-admin/list-meds-admin.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/list-meds-admin/list-meds-admin.component.css -------------------------------------------------------------------------------- /Front/src/app/list-meds-admin/list-meds-admin.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/list-meds-admin/list-meds-admin.component.html -------------------------------------------------------------------------------- /Front/src/app/list-meds-admin/list-meds-admin.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/list-meds-admin/list-meds-admin.component.spec.ts -------------------------------------------------------------------------------- /Front/src/app/list-meds-admin/list-meds-admin.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/list-meds-admin/list-meds-admin.component.ts -------------------------------------------------------------------------------- /Front/src/app/login/login.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/login/login.component.css -------------------------------------------------------------------------------- /Front/src/app/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/login/login.component.html -------------------------------------------------------------------------------- /Front/src/app/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/login/login.component.spec.ts -------------------------------------------------------------------------------- /Front/src/app/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/login/login.component.ts -------------------------------------------------------------------------------- /Front/src/app/medicine-details/medicine-details.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/medicine-details/medicine-details.component.css -------------------------------------------------------------------------------- /Front/src/app/medicine-details/medicine-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/medicine-details/medicine-details.component.html -------------------------------------------------------------------------------- /Front/src/app/medicine-details/medicine-details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/medicine-details/medicine-details.component.spec.ts -------------------------------------------------------------------------------- /Front/src/app/medicine-details/medicine-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/medicine-details/medicine-details.component.ts -------------------------------------------------------------------------------- /Front/src/app/medicines/medicines.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/medicines/medicines.component.css -------------------------------------------------------------------------------- /Front/src/app/medicines/medicines.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/medicines/medicines.component.html -------------------------------------------------------------------------------- /Front/src/app/medicines/medicines.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/medicines/medicines.component.spec.ts -------------------------------------------------------------------------------- /Front/src/app/medicines/medicines.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/medicines/medicines.component.ts -------------------------------------------------------------------------------- /Front/src/app/model/medicine.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/model/medicine.spec.ts -------------------------------------------------------------------------------- /Front/src/app/model/medicine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/model/medicine.ts -------------------------------------------------------------------------------- /Front/src/app/model/user.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/model/user.spec.ts -------------------------------------------------------------------------------- /Front/src/app/model/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/model/user.ts -------------------------------------------------------------------------------- /Front/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/navbar/navbar.component.css -------------------------------------------------------------------------------- /Front/src/app/navbar/navbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/navbar/navbar.component.html -------------------------------------------------------------------------------- /Front/src/app/navbar/navbar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/navbar/navbar.component.spec.ts -------------------------------------------------------------------------------- /Front/src/app/navbar/navbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/navbar/navbar.component.ts -------------------------------------------------------------------------------- /Front/src/app/purchase-history/purchase-history.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/purchase-history/purchase-history.component.css -------------------------------------------------------------------------------- /Front/src/app/purchase-history/purchase-history.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/purchase-history/purchase-history.component.html -------------------------------------------------------------------------------- /Front/src/app/purchase-history/purchase-history.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/purchase-history/purchase-history.component.spec.ts -------------------------------------------------------------------------------- /Front/src/app/purchase-history/purchase-history.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/purchase-history/purchase-history.component.ts -------------------------------------------------------------------------------- /Front/src/app/register/register.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/register/register.component.css -------------------------------------------------------------------------------- /Front/src/app/register/register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/register/register.component.html -------------------------------------------------------------------------------- /Front/src/app/register/register.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/register/register.component.spec.ts -------------------------------------------------------------------------------- /Front/src/app/register/register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/register/register.component.ts -------------------------------------------------------------------------------- /Front/src/app/services/medicine-service.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/services/medicine-service.service.spec.ts -------------------------------------------------------------------------------- /Front/src/app/services/medicine-service.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/services/medicine-service.service.ts -------------------------------------------------------------------------------- /Front/src/app/services/navbar.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/services/navbar.service.spec.ts -------------------------------------------------------------------------------- /Front/src/app/services/navbar.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/services/navbar.service.ts -------------------------------------------------------------------------------- /Front/src/app/services/user-service.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/services/user-service.service.spec.ts -------------------------------------------------------------------------------- /Front/src/app/services/user-service.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/services/user-service.service.ts -------------------------------------------------------------------------------- /Front/src/app/user-profil/user-profil.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/user-profil/user-profil.component.css -------------------------------------------------------------------------------- /Front/src/app/user-profil/user-profil.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/user-profil/user-profil.component.html -------------------------------------------------------------------------------- /Front/src/app/user-profil/user-profil.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/user-profil/user-profil.component.spec.ts -------------------------------------------------------------------------------- /Front/src/app/user-profil/user-profil.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/user-profil/user-profil.component.ts -------------------------------------------------------------------------------- /Front/src/app/users-profil/users-profil.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/users-profil/users-profil.component.css -------------------------------------------------------------------------------- /Front/src/app/users-profil/users-profil.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/users-profil/users-profil.component.html -------------------------------------------------------------------------------- /Front/src/app/users-profil/users-profil.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/users-profil/users-profil.component.spec.ts -------------------------------------------------------------------------------- /Front/src/app/users-profil/users-profil.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/users-profil/users-profil.component.ts -------------------------------------------------------------------------------- /Front/src/app/users/users.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/users/users.component.css -------------------------------------------------------------------------------- /Front/src/app/users/users.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/users/users.component.html -------------------------------------------------------------------------------- /Front/src/app/users/users.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/users/users.component.spec.ts -------------------------------------------------------------------------------- /Front/src/app/users/users.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/app/users/users.component.ts -------------------------------------------------------------------------------- /Front/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Front/src/assets/Laboratory.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/assets/Laboratory.gif -------------------------------------------------------------------------------- /Front/src/assets/Pharmacist-cuate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/assets/Pharmacist-cuate.png -------------------------------------------------------------------------------- /Front/src/assets/Pharmacist.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/assets/Pharmacist.gif -------------------------------------------------------------------------------- /Front/src/assets/Pharmacy-Illustration-AI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/assets/Pharmacy-Illustration-AI.jpg -------------------------------------------------------------------------------- /Front/src/assets/Remedy-rafiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/assets/Remedy-rafiki.png -------------------------------------------------------------------------------- /Front/src/assets/biotech_FILL0_wght400_GRAD0_opsz24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/assets/biotech_FILL0_wght400_GRAD0_opsz24.svg -------------------------------------------------------------------------------- /Front/src/assets/chemistry lab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/assets/chemistry lab.gif -------------------------------------------------------------------------------- /Front/src/assets/cool-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/assets/cool-background.png -------------------------------------------------------------------------------- /Front/src/assets/medication_FILL0_wght400_GRAD0_opsz24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/assets/medication_FILL0_wght400_GRAD0_opsz24.svg -------------------------------------------------------------------------------- /Front/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/favicon.ico -------------------------------------------------------------------------------- /Front/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/index.html -------------------------------------------------------------------------------- /Front/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/main.ts -------------------------------------------------------------------------------- /Front/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/src/styles.css -------------------------------------------------------------------------------- /Front/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/tsconfig.app.json -------------------------------------------------------------------------------- /Front/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/tsconfig.json -------------------------------------------------------------------------------- /Front/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/Front/tsconfig.spec.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /docs/REPORT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aziz-zina/Pharmalab/HEAD/docs/REPORT.pdf --------------------------------------------------------------------------------