├── README.md ├── assets ├── favicon │ ├── android-icon-192x192.png │ ├── apple-icon-120x120.png │ ├── favicon-16x16.png │ └── favicon-32x32.png ├── images │ ├── avatar │ │ ├── 5351552.png │ │ ├── avatar_1.jpg │ │ ├── avatar_2.jpg │ │ ├── avatar_3.jpg │ │ ├── avatar_4.jpg │ │ ├── avatar_5.jpg │ │ └── avatar_user.jpg │ ├── bg │ │ └── pattern.png │ └── post │ │ ├── post_1.jpg │ │ ├── post_2.jpg │ │ ├── post_3.jpg │ │ ├── post_4.jpg │ │ ├── post_5.jpg │ │ ├── post_6.jpg │ │ └── post_7.jpg ├── javascripts │ ├── examples │ │ ├── charts │ │ │ ├── chart-js.js │ │ │ └── morris.js │ │ ├── dashboard.js │ │ ├── forms │ │ │ ├── advanced.js │ │ │ ├── validation.js │ │ │ └── wizard.js │ │ ├── tables │ │ │ └── data-tables.js │ │ └── ui-elements │ │ │ ├── alerts.js │ │ │ ├── buttons.js │ │ │ ├── lightbox.js │ │ │ ├── notifications-pnotify.js │ │ │ └── notifications-toastr.js │ ├── template-init.min.js │ └── template-script.min.js ├── stylesheets │ └── css │ │ └── style.css └── vendor │ ├── animate.css │ └── animate.css │ ├── bootstrap │ ├── css │ │ └── bootstrap.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ ├── glyphicons-halflings-regular.woff2 │ │ └── glyphicons-halflings-regulard41d.eot │ └── js │ │ └── bootstrap.min.js │ ├── bootstrap_color-picker │ ├── css │ │ └── bootstrap-colorpicker.min.css │ ├── img │ │ └── bootstrap-colorpicker │ │ │ ├── alpha-horizontal.png │ │ │ ├── alpha.png │ │ │ ├── hue-horizontal.png │ │ │ ├── hue.png │ │ │ └── saturation.png │ └── js │ │ └── bootstrap-colorpicker.min.js │ ├── bootstrap_date-picker │ ├── css │ │ └── bootstrap-datepicker3.min.css │ └── js │ │ └── bootstrap-datepicker.min.js │ ├── bootstrap_max-lenght │ └── bootstrap-maxlength.js │ ├── bootstrap_time-picker │ ├── css │ │ └── timepicker.css │ └── js │ │ └── bootstrap-timepicker.js │ ├── chart-js │ └── chart.min.js │ ├── data-table │ ├── extensions │ │ └── Responsive │ │ │ ├── css │ │ │ └── responsive.bootstrap.min.css │ │ │ └── js │ │ │ ├── dataTables.responsive.min.js │ │ │ └── responsive.bootstrap.min.js │ └── media │ │ ├── css │ │ └── dataTables.bootstrap.min.css │ │ └── js │ │ ├── dataTables.bootstrap.min.js │ │ └── jquery.dataTables.min.js │ ├── font-awesome │ ├── css │ │ └── font-awesome.css │ └── fonts │ │ ├── fontawesome-webfontd41d.eot │ │ ├── fontawesome-webfonte0a5.eot │ │ ├── fontawesome-webfonte0a5.svg │ │ ├── fontawesome-webfonte0a5.ttf │ │ ├── fontawesome-webfonte0a5.woff │ │ └── fontawesome-webfonte0a5.woff2 │ ├── input-masked │ ├── inputmask.bundle.min.js │ └── phone-codes │ │ └── phone.js │ ├── jquery-validation │ └── jquery.validate.min.js │ ├── jquery.appear │ └── jquery.appear.min.js │ ├── jquery │ └── jquery-1.12.3.min.js │ ├── magnific-popup │ ├── jquery.magnific-popup.min.js │ └── magnific-popup.css │ ├── morris-chart │ ├── morris.css │ ├── morris.min.js │ └── raphael.min.js │ ├── nano-scroller │ └── nano-scroller.js │ ├── owl-carousel │ ├── owl.carousel.min.css │ ├── owl.carousel.min.js │ └── owl.video.play.html │ ├── pace │ ├── pace-theme-minimal.css │ └── pace.min.js │ ├── peity-chart │ └── jquery.peity.min.js │ ├── pnotify │ ├── pnotify.custom.css │ └── pnotify.custom.js │ ├── select2 │ ├── css │ │ ├── select2-bootstrap.min.css │ │ └── select2.min.css │ └── js │ │ └── select2.min.js │ ├── sweetalert │ ├── sweetalert.css │ └── sweetalert.min.js │ ├── toastr │ ├── toastr.min.css │ └── toastr.min.js │ └── twitter-bootstrap-wizard │ └── jquery.bootstrap.wizard.js ├── dbcon.php ├── images └── books │ ├── 20211021123421.jpg │ └── 20211021123621.jpg ├── index.php ├── librarian ├── add_book.php ├── footer.php ├── header.php ├── index.php ├── issue-book.php ├── log-in.php ├── logout.php ├── manage_books.php ├── status_active.php ├── status_inactive.php └── students.php └── student ├── footer.php ├── header.php ├── index.php ├── logout.php ├── register.php ├── sign-in.php └── test.php /README.md: -------------------------------------------------------------------------------- 1 | # Libary Management System -------------------------------------------------------------------------------- /assets/favicon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/favicon/android-icon-192x192.png -------------------------------------------------------------------------------- /assets/favicon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/favicon/apple-icon-120x120.png -------------------------------------------------------------------------------- /assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /assets/images/avatar/5351552.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/images/avatar/5351552.png -------------------------------------------------------------------------------- /assets/images/avatar/avatar_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/images/avatar/avatar_1.jpg -------------------------------------------------------------------------------- /assets/images/avatar/avatar_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/images/avatar/avatar_2.jpg -------------------------------------------------------------------------------- /assets/images/avatar/avatar_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/images/avatar/avatar_3.jpg -------------------------------------------------------------------------------- /assets/images/avatar/avatar_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/images/avatar/avatar_4.jpg -------------------------------------------------------------------------------- /assets/images/avatar/avatar_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/images/avatar/avatar_5.jpg -------------------------------------------------------------------------------- /assets/images/avatar/avatar_user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/images/avatar/avatar_user.jpg -------------------------------------------------------------------------------- /assets/images/bg/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/images/bg/pattern.png -------------------------------------------------------------------------------- /assets/images/post/post_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/images/post/post_1.jpg -------------------------------------------------------------------------------- /assets/images/post/post_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/images/post/post_2.jpg -------------------------------------------------------------------------------- /assets/images/post/post_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/images/post/post_3.jpg -------------------------------------------------------------------------------- /assets/images/post/post_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/images/post/post_4.jpg -------------------------------------------------------------------------------- /assets/images/post/post_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/images/post/post_5.jpg -------------------------------------------------------------------------------- /assets/images/post/post_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/images/post/post_6.jpg -------------------------------------------------------------------------------- /assets/images/post/post_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/images/post/post_7.jpg -------------------------------------------------------------------------------- /assets/javascripts/examples/charts/chart-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/javascripts/examples/charts/chart-js.js -------------------------------------------------------------------------------- /assets/javascripts/examples/charts/morris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/javascripts/examples/charts/morris.js -------------------------------------------------------------------------------- /assets/javascripts/examples/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/javascripts/examples/dashboard.js -------------------------------------------------------------------------------- /assets/javascripts/examples/forms/advanced.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/javascripts/examples/forms/advanced.js -------------------------------------------------------------------------------- /assets/javascripts/examples/forms/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/javascripts/examples/forms/validation.js -------------------------------------------------------------------------------- /assets/javascripts/examples/forms/wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/javascripts/examples/forms/wizard.js -------------------------------------------------------------------------------- /assets/javascripts/examples/tables/data-tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/javascripts/examples/tables/data-tables.js -------------------------------------------------------------------------------- /assets/javascripts/examples/ui-elements/alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/javascripts/examples/ui-elements/alerts.js -------------------------------------------------------------------------------- /assets/javascripts/examples/ui-elements/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/javascripts/examples/ui-elements/buttons.js -------------------------------------------------------------------------------- /assets/javascripts/examples/ui-elements/lightbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/javascripts/examples/ui-elements/lightbox.js -------------------------------------------------------------------------------- /assets/javascripts/examples/ui-elements/notifications-pnotify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/javascripts/examples/ui-elements/notifications-pnotify.js -------------------------------------------------------------------------------- /assets/javascripts/examples/ui-elements/notifications-toastr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/javascripts/examples/ui-elements/notifications-toastr.js -------------------------------------------------------------------------------- /assets/javascripts/template-init.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/javascripts/template-init.min.js -------------------------------------------------------------------------------- /assets/javascripts/template-script.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/javascripts/template-script.min.js -------------------------------------------------------------------------------- /assets/stylesheets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/stylesheets/css/style.css -------------------------------------------------------------------------------- /assets/vendor/animate.css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/animate.css/animate.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /assets/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/vendor/bootstrap/fonts/glyphicons-halflings-regulard41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/bootstrap/fonts/glyphicons-halflings-regulard41d.eot -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap_color-picker/css/bootstrap-colorpicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/bootstrap_color-picker/css/bootstrap-colorpicker.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap_color-picker/img/bootstrap-colorpicker/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/bootstrap_color-picker/img/bootstrap-colorpicker/alpha-horizontal.png -------------------------------------------------------------------------------- /assets/vendor/bootstrap_color-picker/img/bootstrap-colorpicker/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/bootstrap_color-picker/img/bootstrap-colorpicker/alpha.png -------------------------------------------------------------------------------- /assets/vendor/bootstrap_color-picker/img/bootstrap-colorpicker/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/bootstrap_color-picker/img/bootstrap-colorpicker/hue-horizontal.png -------------------------------------------------------------------------------- /assets/vendor/bootstrap_color-picker/img/bootstrap-colorpicker/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/bootstrap_color-picker/img/bootstrap-colorpicker/hue.png -------------------------------------------------------------------------------- /assets/vendor/bootstrap_color-picker/img/bootstrap-colorpicker/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/bootstrap_color-picker/img/bootstrap-colorpicker/saturation.png -------------------------------------------------------------------------------- /assets/vendor/bootstrap_color-picker/js/bootstrap-colorpicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/bootstrap_color-picker/js/bootstrap-colorpicker.min.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap_date-picker/css/bootstrap-datepicker3.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/bootstrap_date-picker/css/bootstrap-datepicker3.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap_date-picker/js/bootstrap-datepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/bootstrap_date-picker/js/bootstrap-datepicker.min.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap_max-lenght/bootstrap-maxlength.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/bootstrap_max-lenght/bootstrap-maxlength.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap_time-picker/css/timepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/bootstrap_time-picker/css/timepicker.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap_time-picker/js/bootstrap-timepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/bootstrap_time-picker/js/bootstrap-timepicker.js -------------------------------------------------------------------------------- /assets/vendor/chart-js/chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/chart-js/chart.min.js -------------------------------------------------------------------------------- /assets/vendor/data-table/extensions/Responsive/css/responsive.bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/data-table/extensions/Responsive/css/responsive.bootstrap.min.css -------------------------------------------------------------------------------- /assets/vendor/data-table/extensions/Responsive/js/dataTables.responsive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/data-table/extensions/Responsive/js/dataTables.responsive.min.js -------------------------------------------------------------------------------- /assets/vendor/data-table/extensions/Responsive/js/responsive.bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/data-table/extensions/Responsive/js/responsive.bootstrap.min.js -------------------------------------------------------------------------------- /assets/vendor/data-table/media/css/dataTables.bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/data-table/media/css/dataTables.bootstrap.min.css -------------------------------------------------------------------------------- /assets/vendor/data-table/media/js/dataTables.bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/data-table/media/js/dataTables.bootstrap.min.js -------------------------------------------------------------------------------- /assets/vendor/data-table/media/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/data-table/media/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /assets/vendor/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /assets/vendor/font-awesome/fonts/fontawesome-webfontd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/font-awesome/fonts/fontawesome-webfontd41d.eot -------------------------------------------------------------------------------- /assets/vendor/font-awesome/fonts/fontawesome-webfonte0a5.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/font-awesome/fonts/fontawesome-webfonte0a5.eot -------------------------------------------------------------------------------- /assets/vendor/font-awesome/fonts/fontawesome-webfonte0a5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/font-awesome/fonts/fontawesome-webfonte0a5.svg -------------------------------------------------------------------------------- /assets/vendor/font-awesome/fonts/fontawesome-webfonte0a5.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/font-awesome/fonts/fontawesome-webfonte0a5.ttf -------------------------------------------------------------------------------- /assets/vendor/font-awesome/fonts/fontawesome-webfonte0a5.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/font-awesome/fonts/fontawesome-webfonte0a5.woff -------------------------------------------------------------------------------- /assets/vendor/font-awesome/fonts/fontawesome-webfonte0a5.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/font-awesome/fonts/fontawesome-webfonte0a5.woff2 -------------------------------------------------------------------------------- /assets/vendor/input-masked/inputmask.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/input-masked/inputmask.bundle.min.js -------------------------------------------------------------------------------- /assets/vendor/input-masked/phone-codes/phone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/input-masked/phone-codes/phone.js -------------------------------------------------------------------------------- /assets/vendor/jquery-validation/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/jquery-validation/jquery.validate.min.js -------------------------------------------------------------------------------- /assets/vendor/jquery.appear/jquery.appear.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/jquery.appear/jquery.appear.min.js -------------------------------------------------------------------------------- /assets/vendor/jquery/jquery-1.12.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/jquery/jquery-1.12.3.min.js -------------------------------------------------------------------------------- /assets/vendor/magnific-popup/jquery.magnific-popup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/magnific-popup/jquery.magnific-popup.min.js -------------------------------------------------------------------------------- /assets/vendor/magnific-popup/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/magnific-popup/magnific-popup.css -------------------------------------------------------------------------------- /assets/vendor/morris-chart/morris.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/morris-chart/morris.css -------------------------------------------------------------------------------- /assets/vendor/morris-chart/morris.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/morris-chart/morris.min.js -------------------------------------------------------------------------------- /assets/vendor/morris-chart/raphael.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/morris-chart/raphael.min.js -------------------------------------------------------------------------------- /assets/vendor/nano-scroller/nano-scroller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/nano-scroller/nano-scroller.js -------------------------------------------------------------------------------- /assets/vendor/owl-carousel/owl.carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/owl-carousel/owl.carousel.min.css -------------------------------------------------------------------------------- /assets/vendor/owl-carousel/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/owl-carousel/owl.carousel.min.js -------------------------------------------------------------------------------- /assets/vendor/owl-carousel/owl.video.play.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/owl-carousel/owl.video.play.html -------------------------------------------------------------------------------- /assets/vendor/pace/pace-theme-minimal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/pace/pace-theme-minimal.css -------------------------------------------------------------------------------- /assets/vendor/pace/pace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/pace/pace.min.js -------------------------------------------------------------------------------- /assets/vendor/peity-chart/jquery.peity.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/peity-chart/jquery.peity.min.js -------------------------------------------------------------------------------- /assets/vendor/pnotify/pnotify.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/pnotify/pnotify.custom.css -------------------------------------------------------------------------------- /assets/vendor/pnotify/pnotify.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/pnotify/pnotify.custom.js -------------------------------------------------------------------------------- /assets/vendor/select2/css/select2-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/select2/css/select2-bootstrap.min.css -------------------------------------------------------------------------------- /assets/vendor/select2/css/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/select2/css/select2.min.css -------------------------------------------------------------------------------- /assets/vendor/select2/js/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/select2/js/select2.min.js -------------------------------------------------------------------------------- /assets/vendor/sweetalert/sweetalert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/sweetalert/sweetalert.css -------------------------------------------------------------------------------- /assets/vendor/sweetalert/sweetalert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/sweetalert/sweetalert.min.js -------------------------------------------------------------------------------- /assets/vendor/toastr/toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/toastr/toastr.min.css -------------------------------------------------------------------------------- /assets/vendor/toastr/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/toastr/toastr.min.js -------------------------------------------------------------------------------- /assets/vendor/twitter-bootstrap-wizard/jquery.bootstrap.wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/assets/vendor/twitter-bootstrap-wizard/jquery.bootstrap.wizard.js -------------------------------------------------------------------------------- /dbcon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/dbcon.php -------------------------------------------------------------------------------- /images/books/20211021123421.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/images/books/20211021123421.jpg -------------------------------------------------------------------------------- /images/books/20211021123621.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/images/books/20211021123621.jpg -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/index.php -------------------------------------------------------------------------------- /librarian/add_book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/librarian/add_book.php -------------------------------------------------------------------------------- /librarian/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/librarian/footer.php -------------------------------------------------------------------------------- /librarian/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/librarian/header.php -------------------------------------------------------------------------------- /librarian/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/librarian/index.php -------------------------------------------------------------------------------- /librarian/issue-book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/librarian/issue-book.php -------------------------------------------------------------------------------- /librarian/log-in.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/librarian/log-in.php -------------------------------------------------------------------------------- /librarian/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/librarian/logout.php -------------------------------------------------------------------------------- /librarian/manage_books.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/librarian/manage_books.php -------------------------------------------------------------------------------- /librarian/status_active.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/librarian/status_active.php -------------------------------------------------------------------------------- /librarian/status_inactive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/librarian/status_inactive.php -------------------------------------------------------------------------------- /librarian/students.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/librarian/students.php -------------------------------------------------------------------------------- /student/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/student/footer.php -------------------------------------------------------------------------------- /student/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/student/header.php -------------------------------------------------------------------------------- /student/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/student/index.php -------------------------------------------------------------------------------- /student/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/student/logout.php -------------------------------------------------------------------------------- /student/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/student/register.php -------------------------------------------------------------------------------- /student/sign-in.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/student/sign-in.php -------------------------------------------------------------------------------- /student/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehedi53423/Library-Management-System/HEAD/student/test.php --------------------------------------------------------------------------------