├── .gitignore ├── How-to-upgrade-Angular-8.pptx ├── README.md ├── angular.json ├── firebase.json ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── manage │ │ ├── attendance.component.css │ │ ├── attendance.component.html │ │ ├── attendance.component.ts │ │ ├── fee-view.component.css │ │ ├── fee-view.component.html │ │ ├── fee-view.component.ts │ │ ├── fee.component.css │ │ ├── fee.component.html │ │ ├── fee.component.ts │ │ ├── marks-view.component.css │ │ ├── marks-view.component.html │ │ ├── marks-view.component.ts │ │ ├── marks.component.css │ │ ├── marks.component.html │ │ ├── marks.component.ts │ │ ├── student-view.component.css │ │ ├── student-view.component.html │ │ ├── student-view.component.ts │ │ ├── student.component.css │ │ ├── student.component.html │ │ └── student.component.ts │ ├── online │ │ ├── assignments-view.component.css │ │ ├── assignments-view.component.html │ │ ├── assignments-view.component.ts │ │ ├── assignments.component.css │ │ ├── assignments.component.html │ │ ├── assignments.component.ts │ │ ├── classes-view.component.css │ │ ├── classes-view.component.html │ │ ├── classes-view.component.ts │ │ ├── classes.component.css │ │ ├── classes.component.html │ │ ├── classes.component.ts │ │ ├── homework-view.component.css │ │ ├── homework-view.component.html │ │ ├── homework-view.component.ts │ │ ├── homework.component.css │ │ ├── homework.component.html │ │ ├── homework.component.ts │ │ ├── tutorials-view.component.css │ │ ├── tutorials-view.component.html │ │ ├── tutorials-view.component.ts │ │ ├── tutorials.component.css │ │ ├── tutorials.component.html │ │ └── tutorials.component.ts │ ├── services │ │ ├── auth-guard.service.ts │ │ ├── backend.service.ts │ │ └── nav-auth-guard.service.ts │ ├── setup │ │ ├── enrollment.component.html │ │ ├── enrollment.component.ts │ │ ├── feecode.component.css │ │ ├── feecode.component.html │ │ ├── feecode.component.ts │ │ ├── markscode.component.css │ │ ├── markscode.component.html │ │ └── markscode.component.ts │ ├── shared │ │ ├── aboutus.component.css │ │ ├── aboutus.component.html │ │ ├── aboutus.component.ts │ │ ├── custom.material.ts │ │ ├── dropzone │ │ │ ├── dropzone.directive.ts │ │ │ ├── filesize.pipe.ts │ │ │ ├── fileupload.component.css │ │ │ ├── fileupload.component.html │ │ │ └── fileupload.component.ts │ │ ├── footer.component.css │ │ ├── footer.component.html │ │ ├── footer.component.ts │ │ ├── header.admin.component.css │ │ ├── header.admin.component.html │ │ ├── header.admin.component.ts │ │ ├── helpdesk.component.css │ │ ├── helpdesk.component.html │ │ ├── helpdesk.component.ts │ │ ├── login │ │ │ ├── login.component.css │ │ │ ├── login.component.html │ │ │ ├── login.component.ts │ │ │ ├── signup.component.css │ │ │ ├── signup.component.html │ │ │ └── signup.component.ts │ │ ├── router.animation.ts │ │ └── settings │ │ │ ├── notifications.component.css │ │ │ ├── notifications.component.html │ │ │ ├── notifications.component.ts │ │ │ ├── settings.component.css │ │ │ ├── settings.component.html │ │ │ └── settings.component.ts │ └── staff │ │ ├── employee.component.css │ │ ├── employee.component.html │ │ ├── employee.component.ts │ │ ├── expenses.component.css │ │ ├── expenses.component.html │ │ ├── expenses.component.ts │ │ ├── salary.component.css │ │ ├── salary.component.html │ │ ├── salary.component.ts │ │ ├── salarycode.component.css │ │ ├── salarycode.component.html │ │ ├── salarycode.component.ts │ │ ├── voucher.component.css │ │ ├── voucher.component.html │ │ └── voucher.component.ts ├── assets │ ├── .gitkeep │ ├── css │ │ └── styles.css │ ├── favicon_icons │ │ ├── favicon_TaV_1.ico │ │ ├── favicon_TaV_10.ico │ │ ├── favicon_TaV_11.ico │ │ ├── favicon_TaV_12.ico │ │ ├── favicon_TaV_2.ico │ │ ├── favicon_TaV_3.ico │ │ ├── favicon_TaV_4.ico │ │ ├── favicon_TaV_5.ico │ │ ├── favicon_TaV_6.ico │ │ ├── favicon_TaV_7.ico │ │ ├── favicon_TaV_8.ico │ │ └── favicon_TaV_9.ico │ ├── icons │ │ ├── account_circle.svg │ │ ├── add.svg │ │ ├── backspace.svg │ │ ├── bars.svg │ │ ├── book.svg │ │ ├── business.svg │ │ ├── cached.svg │ │ ├── clear.svg │ │ ├── cloud.svg │ │ ├── code.svg │ │ ├── create.svg │ │ ├── dashboard-black.svg │ │ ├── delete.svg │ │ ├── drop_down.svg │ │ ├── edit.svg │ │ ├── email.svg │ │ ├── equalizer.svg │ │ ├── event.svg │ │ ├── favicon.ico │ │ ├── fb.svg │ │ ├── github.svg │ │ ├── group.svg │ │ ├── help.svg │ │ ├── home.svg │ │ ├── language.svg │ │ ├── linkedin.svg │ │ ├── menu.svg │ │ ├── more_vert.svg │ │ ├── new.svg │ │ ├── person.svg │ │ ├── phone.svg │ │ ├── place.svg │ │ ├── radio_off.svg │ │ ├── radio_on.svg │ │ ├── salary.svg │ │ ├── search.svg │ │ ├── security.svg │ │ ├── star.svg │ │ ├── track_changes.svg │ │ └── vpn.svg │ └── img │ │ └── tracker_2.png ├── browserslist ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── karma.conf.js ├── main.ts ├── polyfills.ts ├── styles.css ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── tslint.json ├── tsconfig.app.json ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/.gitignore -------------------------------------------------------------------------------- /How-to-upgrade-Angular-8.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/How-to-upgrade-Angular-8.pptx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/angular.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/firebase.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/manage/attendance.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/manage/attendance.component.html: -------------------------------------------------------------------------------- 1 |
2 | attendance works! 3 |
4 | -------------------------------------------------------------------------------- /src/app/manage/attendance.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/manage/attendance.component.ts -------------------------------------------------------------------------------- /src/app/manage/fee-view.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/manage/fee-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/manage/fee-view.component.html -------------------------------------------------------------------------------- /src/app/manage/fee-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/manage/fee-view.component.ts -------------------------------------------------------------------------------- /src/app/manage/fee.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/manage/fee.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/manage/fee.component.html -------------------------------------------------------------------------------- /src/app/manage/fee.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/manage/fee.component.ts -------------------------------------------------------------------------------- /src/app/manage/marks-view.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/manage/marks-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/manage/marks-view.component.html -------------------------------------------------------------------------------- /src/app/manage/marks-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/manage/marks-view.component.ts -------------------------------------------------------------------------------- /src/app/manage/marks.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/manage/marks.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/manage/marks.component.html -------------------------------------------------------------------------------- /src/app/manage/marks.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/manage/marks.component.ts -------------------------------------------------------------------------------- /src/app/manage/student-view.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/manage/student-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/manage/student-view.component.html -------------------------------------------------------------------------------- /src/app/manage/student-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/manage/student-view.component.ts -------------------------------------------------------------------------------- /src/app/manage/student.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/manage/student.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/manage/student.component.html -------------------------------------------------------------------------------- /src/app/manage/student.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/manage/student.component.ts -------------------------------------------------------------------------------- /src/app/online/assignments-view.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/online/assignments-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/online/assignments-view.component.html -------------------------------------------------------------------------------- /src/app/online/assignments-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/online/assignments-view.component.ts -------------------------------------------------------------------------------- /src/app/online/assignments.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/online/assignments.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/online/assignments.component.html -------------------------------------------------------------------------------- /src/app/online/assignments.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/online/assignments.component.ts -------------------------------------------------------------------------------- /src/app/online/classes-view.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/online/classes-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/online/classes-view.component.html -------------------------------------------------------------------------------- /src/app/online/classes-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/online/classes-view.component.ts -------------------------------------------------------------------------------- /src/app/online/classes.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/online/classes.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/online/classes.component.html -------------------------------------------------------------------------------- /src/app/online/classes.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/online/classes.component.ts -------------------------------------------------------------------------------- /src/app/online/homework-view.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/online/homework-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/online/homework-view.component.html -------------------------------------------------------------------------------- /src/app/online/homework-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/online/homework-view.component.ts -------------------------------------------------------------------------------- /src/app/online/homework.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/online/homework.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/online/homework.component.html -------------------------------------------------------------------------------- /src/app/online/homework.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/online/homework.component.ts -------------------------------------------------------------------------------- /src/app/online/tutorials-view.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/online/tutorials-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/online/tutorials-view.component.html -------------------------------------------------------------------------------- /src/app/online/tutorials-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/online/tutorials-view.component.ts -------------------------------------------------------------------------------- /src/app/online/tutorials.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/online/tutorials.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/online/tutorials.component.html -------------------------------------------------------------------------------- /src/app/online/tutorials.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/online/tutorials.component.ts -------------------------------------------------------------------------------- /src/app/services/auth-guard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/services/auth-guard.service.ts -------------------------------------------------------------------------------- /src/app/services/backend.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/services/backend.service.ts -------------------------------------------------------------------------------- /src/app/services/nav-auth-guard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/services/nav-auth-guard.service.ts -------------------------------------------------------------------------------- /src/app/setup/enrollment.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/setup/enrollment.component.html -------------------------------------------------------------------------------- /src/app/setup/enrollment.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/setup/enrollment.component.ts -------------------------------------------------------------------------------- /src/app/setup/feecode.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/setup/feecode.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/setup/feecode.component.html -------------------------------------------------------------------------------- /src/app/setup/feecode.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/setup/feecode.component.ts -------------------------------------------------------------------------------- /src/app/setup/markscode.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/setup/markscode.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/setup/markscode.component.html -------------------------------------------------------------------------------- /src/app/setup/markscode.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/setup/markscode.component.ts -------------------------------------------------------------------------------- /src/app/shared/aboutus.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/aboutus.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/shared/aboutus.component.html -------------------------------------------------------------------------------- /src/app/shared/aboutus.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/shared/aboutus.component.ts -------------------------------------------------------------------------------- /src/app/shared/custom.material.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/shared/custom.material.ts -------------------------------------------------------------------------------- /src/app/shared/dropzone/dropzone.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/shared/dropzone/dropzone.directive.ts -------------------------------------------------------------------------------- /src/app/shared/dropzone/filesize.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/shared/dropzone/filesize.pipe.ts -------------------------------------------------------------------------------- /src/app/shared/dropzone/fileupload.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/shared/dropzone/fileupload.component.css -------------------------------------------------------------------------------- /src/app/shared/dropzone/fileupload.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/shared/dropzone/fileupload.component.html -------------------------------------------------------------------------------- /src/app/shared/dropzone/fileupload.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/shared/dropzone/fileupload.component.ts -------------------------------------------------------------------------------- /src/app/shared/footer.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/shared/footer.component.html -------------------------------------------------------------------------------- /src/app/shared/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/shared/footer.component.ts -------------------------------------------------------------------------------- /src/app/shared/header.admin.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/header.admin.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/shared/header.admin.component.html -------------------------------------------------------------------------------- /src/app/shared/header.admin.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/shared/header.admin.component.ts -------------------------------------------------------------------------------- /src/app/shared/helpdesk.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/helpdesk.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/shared/helpdesk.component.html -------------------------------------------------------------------------------- /src/app/shared/helpdesk.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/shared/helpdesk.component.ts -------------------------------------------------------------------------------- /src/app/shared/login/login.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/shared/login/login.component.html -------------------------------------------------------------------------------- /src/app/shared/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/shared/login/login.component.ts -------------------------------------------------------------------------------- /src/app/shared/login/signup.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/login/signup.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/shared/login/signup.component.html -------------------------------------------------------------------------------- /src/app/shared/login/signup.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/shared/login/signup.component.ts -------------------------------------------------------------------------------- /src/app/shared/router.animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/shared/router.animation.ts -------------------------------------------------------------------------------- /src/app/shared/settings/notifications.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/settings/notifications.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/shared/settings/notifications.component.html -------------------------------------------------------------------------------- /src/app/shared/settings/notifications.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/shared/settings/notifications.component.ts -------------------------------------------------------------------------------- /src/app/shared/settings/settings.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/settings/settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/shared/settings/settings.component.html -------------------------------------------------------------------------------- /src/app/shared/settings/settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/shared/settings/settings.component.ts -------------------------------------------------------------------------------- /src/app/staff/employee.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/staff/employee.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/staff/employee.component.html -------------------------------------------------------------------------------- /src/app/staff/employee.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/staff/employee.component.ts -------------------------------------------------------------------------------- /src/app/staff/expenses.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/staff/expenses.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/staff/expenses.component.html -------------------------------------------------------------------------------- /src/app/staff/expenses.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/staff/expenses.component.ts -------------------------------------------------------------------------------- /src/app/staff/salary.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/staff/salary.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/staff/salary.component.html -------------------------------------------------------------------------------- /src/app/staff/salary.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/staff/salary.component.ts -------------------------------------------------------------------------------- /src/app/staff/salarycode.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/staff/salarycode.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/staff/salarycode.component.html -------------------------------------------------------------------------------- /src/app/staff/salarycode.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/staff/salarycode.component.ts -------------------------------------------------------------------------------- /src/app/staff/voucher.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/staff/voucher.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/staff/voucher.component.html -------------------------------------------------------------------------------- /src/app/staff/voucher.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/app/staff/voucher.component.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/css/styles.css -------------------------------------------------------------------------------- /src/assets/favicon_icons/favicon_TaV_1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/favicon_icons/favicon_TaV_1.ico -------------------------------------------------------------------------------- /src/assets/favicon_icons/favicon_TaV_10.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/favicon_icons/favicon_TaV_10.ico -------------------------------------------------------------------------------- /src/assets/favicon_icons/favicon_TaV_11.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/favicon_icons/favicon_TaV_11.ico -------------------------------------------------------------------------------- /src/assets/favicon_icons/favicon_TaV_12.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/favicon_icons/favicon_TaV_12.ico -------------------------------------------------------------------------------- /src/assets/favicon_icons/favicon_TaV_2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/favicon_icons/favicon_TaV_2.ico -------------------------------------------------------------------------------- /src/assets/favicon_icons/favicon_TaV_3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/favicon_icons/favicon_TaV_3.ico -------------------------------------------------------------------------------- /src/assets/favicon_icons/favicon_TaV_4.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/favicon_icons/favicon_TaV_4.ico -------------------------------------------------------------------------------- /src/assets/favicon_icons/favicon_TaV_5.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/favicon_icons/favicon_TaV_5.ico -------------------------------------------------------------------------------- /src/assets/favicon_icons/favicon_TaV_6.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/favicon_icons/favicon_TaV_6.ico -------------------------------------------------------------------------------- /src/assets/favicon_icons/favicon_TaV_7.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/favicon_icons/favicon_TaV_7.ico -------------------------------------------------------------------------------- /src/assets/favicon_icons/favicon_TaV_8.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/favicon_icons/favicon_TaV_8.ico -------------------------------------------------------------------------------- /src/assets/favicon_icons/favicon_TaV_9.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/favicon_icons/favicon_TaV_9.ico -------------------------------------------------------------------------------- /src/assets/icons/account_circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/account_circle.svg -------------------------------------------------------------------------------- /src/assets/icons/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/add.svg -------------------------------------------------------------------------------- /src/assets/icons/backspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/backspace.svg -------------------------------------------------------------------------------- /src/assets/icons/bars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/bars.svg -------------------------------------------------------------------------------- /src/assets/icons/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/book.svg -------------------------------------------------------------------------------- /src/assets/icons/business.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/business.svg -------------------------------------------------------------------------------- /src/assets/icons/cached.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/cached.svg -------------------------------------------------------------------------------- /src/assets/icons/clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/clear.svg -------------------------------------------------------------------------------- /src/assets/icons/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/cloud.svg -------------------------------------------------------------------------------- /src/assets/icons/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/code.svg -------------------------------------------------------------------------------- /src/assets/icons/create.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/create.svg -------------------------------------------------------------------------------- /src/assets/icons/dashboard-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/dashboard-black.svg -------------------------------------------------------------------------------- /src/assets/icons/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/delete.svg -------------------------------------------------------------------------------- /src/assets/icons/drop_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/drop_down.svg -------------------------------------------------------------------------------- /src/assets/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/edit.svg -------------------------------------------------------------------------------- /src/assets/icons/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/email.svg -------------------------------------------------------------------------------- /src/assets/icons/equalizer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/equalizer.svg -------------------------------------------------------------------------------- /src/assets/icons/event.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/event.svg -------------------------------------------------------------------------------- /src/assets/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/favicon.ico -------------------------------------------------------------------------------- /src/assets/icons/fb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/fb.svg -------------------------------------------------------------------------------- /src/assets/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/github.svg -------------------------------------------------------------------------------- /src/assets/icons/group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/group.svg -------------------------------------------------------------------------------- /src/assets/icons/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/help.svg -------------------------------------------------------------------------------- /src/assets/icons/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/home.svg -------------------------------------------------------------------------------- /src/assets/icons/language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/language.svg -------------------------------------------------------------------------------- /src/assets/icons/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/linkedin.svg -------------------------------------------------------------------------------- /src/assets/icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/menu.svg -------------------------------------------------------------------------------- /src/assets/icons/more_vert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/more_vert.svg -------------------------------------------------------------------------------- /src/assets/icons/new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/new.svg -------------------------------------------------------------------------------- /src/assets/icons/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/person.svg -------------------------------------------------------------------------------- /src/assets/icons/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/phone.svg -------------------------------------------------------------------------------- /src/assets/icons/place.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/place.svg -------------------------------------------------------------------------------- /src/assets/icons/radio_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/radio_off.svg -------------------------------------------------------------------------------- /src/assets/icons/radio_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/radio_on.svg -------------------------------------------------------------------------------- /src/assets/icons/salary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/salary.svg -------------------------------------------------------------------------------- /src/assets/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/search.svg -------------------------------------------------------------------------------- /src/assets/icons/security.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/security.svg -------------------------------------------------------------------------------- /src/assets/icons/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/star.svg -------------------------------------------------------------------------------- /src/assets/icons/track_changes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/track_changes.svg -------------------------------------------------------------------------------- /src/assets/icons/vpn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/icons/vpn.svg -------------------------------------------------------------------------------- /src/assets/img/tracker_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/assets/img/tracker_2.png -------------------------------------------------------------------------------- /src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/browserslist -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/index.html -------------------------------------------------------------------------------- /src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/karma.conf.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/src/tslint.json -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmitXShukla/Online-School-Management-App-Angular-Firebase/HEAD/tslint.json --------------------------------------------------------------------------------