├── reports ├── Project Report.pdf └── project report abstract.pdf └── student management ├── main.py ├── requirements.txt ├── static ├── assets │ ├── css │ │ ├── style.css │ │ └── style2.css │ ├── js │ │ └── main.js │ └── vendor │ │ ├── aos │ │ ├── aos.css │ │ └── aos.js │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-grid.rtl.css │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ ├── bootstrap-utilities.css │ │ │ ├── bootstrap-utilities.css.map │ │ │ ├── bootstrap-utilities.min.css │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── bootstrap.rtl.css │ │ │ ├── bootstrap.rtl.css.map │ │ │ ├── bootstrap.rtl.min.css │ │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.esm.js │ │ │ ├── bootstrap.esm.js.map │ │ │ ├── bootstrap.esm.min.js │ │ │ ├── bootstrap.esm.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ ├── font-awesome.css.map │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── hoverIntent │ │ └── hoverIntent.js │ │ ├── jquery.easing │ │ └── jquery.easing.min.js │ │ ├── jquery │ │ ├── jquery.min.js │ │ └── jquery.min.map │ │ ├── owl.carousel │ │ ├── LICENSE │ │ ├── README.md │ │ ├── assets │ │ │ ├── ajax-loader.gif │ │ │ ├── owl.carousel.css │ │ │ ├── owl.carousel.min.css │ │ │ ├── owl.theme.default.css │ │ │ ├── owl.theme.default.min.css │ │ │ ├── owl.theme.green.css │ │ │ ├── owl.theme.green.min.css │ │ │ └── owl.video.play.png │ │ ├── owl.carousel.js │ │ └── owl.carousel.min.js │ │ ├── php-email-form │ │ └── validate.js │ │ ├── superfish │ │ └── superfish.min.js │ │ └── venobox │ │ ├── venobox.css │ │ ├── venobox.js │ │ ├── venobox.min.css │ │ └── venobox.min.js ├── css │ ├── phoneregister.css │ └── virtualregister.css └── images │ ├── bg1.jpg │ ├── f1.jpg │ ├── f2.jpg │ ├── f3.jpg │ ├── logo.jpeg │ ├── post1.jpg │ ├── post2.jpg │ ├── post3.jpg │ └── users.png ├── students.sql └── templates ├── about.html ├── attendance.html ├── auth.html ├── base.html ├── basic.html ├── department.html ├── edit.html ├── index.html ├── login.html ├── search.html ├── signup.html ├── student.html ├── studentdetails.html └── triggers.html /reports/Project Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/reports/Project Report.pdf -------------------------------------------------------------------------------- /reports/project report abstract.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/reports/project report abstract.pdf -------------------------------------------------------------------------------- /student management/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/main.py -------------------------------------------------------------------------------- /student management/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/requirements.txt -------------------------------------------------------------------------------- /student management/static/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/css/style.css -------------------------------------------------------------------------------- /student management/static/assets/css/style2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/css/style2.css -------------------------------------------------------------------------------- /student management/static/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/js/main.js -------------------------------------------------------------------------------- /student management/static/assets/vendor/aos/aos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/aos/aos.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/aos/aos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/aos/aos.js -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/js/bootstrap.esm.js -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /student management/static/assets/vendor/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /student management/static/assets/vendor/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/font-awesome/css/font-awesome.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/font-awesome/css/font-awesome.css.map -------------------------------------------------------------------------------- /student management/static/assets/vendor/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /student management/static/assets/vendor/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /student management/static/assets/vendor/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /student management/static/assets/vendor/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /student management/static/assets/vendor/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /student management/static/assets/vendor/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /student management/static/assets/vendor/hoverIntent/hoverIntent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/hoverIntent/hoverIntent.js -------------------------------------------------------------------------------- /student management/static/assets/vendor/jquery.easing/jquery.easing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/jquery.easing/jquery.easing.min.js -------------------------------------------------------------------------------- /student management/static/assets/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /student management/static/assets/vendor/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/jquery/jquery.min.map -------------------------------------------------------------------------------- /student management/static/assets/vendor/owl.carousel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/owl.carousel/LICENSE -------------------------------------------------------------------------------- /student management/static/assets/vendor/owl.carousel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/owl.carousel/README.md -------------------------------------------------------------------------------- /student management/static/assets/vendor/owl.carousel/assets/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/owl.carousel/assets/ajax-loader.gif -------------------------------------------------------------------------------- /student management/static/assets/vendor/owl.carousel/assets/owl.carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/owl.carousel/assets/owl.carousel.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/owl.carousel/assets/owl.carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/owl.carousel/assets/owl.carousel.min.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/owl.carousel/assets/owl.theme.default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/owl.carousel/assets/owl.theme.default.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/owl.carousel/assets/owl.theme.default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/owl.carousel/assets/owl.theme.default.min.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/owl.carousel/assets/owl.theme.green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/owl.carousel/assets/owl.theme.green.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/owl.carousel/assets/owl.theme.green.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/owl.carousel/assets/owl.theme.green.min.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/owl.carousel/assets/owl.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/owl.carousel/assets/owl.video.play.png -------------------------------------------------------------------------------- /student management/static/assets/vendor/owl.carousel/owl.carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/owl.carousel/owl.carousel.js -------------------------------------------------------------------------------- /student management/static/assets/vendor/owl.carousel/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/owl.carousel/owl.carousel.min.js -------------------------------------------------------------------------------- /student management/static/assets/vendor/php-email-form/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/php-email-form/validate.js -------------------------------------------------------------------------------- /student management/static/assets/vendor/superfish/superfish.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/superfish/superfish.min.js -------------------------------------------------------------------------------- /student management/static/assets/vendor/venobox/venobox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/venobox/venobox.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/venobox/venobox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/venobox/venobox.js -------------------------------------------------------------------------------- /student management/static/assets/vendor/venobox/venobox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/venobox/venobox.min.css -------------------------------------------------------------------------------- /student management/static/assets/vendor/venobox/venobox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/assets/vendor/venobox/venobox.min.js -------------------------------------------------------------------------------- /student management/static/css/phoneregister.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/css/phoneregister.css -------------------------------------------------------------------------------- /student management/static/css/virtualregister.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/css/virtualregister.css -------------------------------------------------------------------------------- /student management/static/images/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/images/bg1.jpg -------------------------------------------------------------------------------- /student management/static/images/f1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/images/f1.jpg -------------------------------------------------------------------------------- /student management/static/images/f2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/images/f2.jpg -------------------------------------------------------------------------------- /student management/static/images/f3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/images/f3.jpg -------------------------------------------------------------------------------- /student management/static/images/logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/images/logo.jpeg -------------------------------------------------------------------------------- /student management/static/images/post1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/images/post1.jpg -------------------------------------------------------------------------------- /student management/static/images/post2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/images/post2.jpg -------------------------------------------------------------------------------- /student management/static/images/post3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/images/post3.jpg -------------------------------------------------------------------------------- /student management/static/images/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/static/images/users.png -------------------------------------------------------------------------------- /student management/students.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/students.sql -------------------------------------------------------------------------------- /student management/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/templates/about.html -------------------------------------------------------------------------------- /student management/templates/attendance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/templates/attendance.html -------------------------------------------------------------------------------- /student management/templates/auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/templates/auth.html -------------------------------------------------------------------------------- /student management/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/templates/base.html -------------------------------------------------------------------------------- /student management/templates/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/templates/basic.html -------------------------------------------------------------------------------- /student management/templates/department.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/templates/department.html -------------------------------------------------------------------------------- /student management/templates/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/templates/edit.html -------------------------------------------------------------------------------- /student management/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/templates/index.html -------------------------------------------------------------------------------- /student management/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/templates/login.html -------------------------------------------------------------------------------- /student management/templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/templates/search.html -------------------------------------------------------------------------------- /student management/templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/templates/signup.html -------------------------------------------------------------------------------- /student management/templates/student.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/templates/student.html -------------------------------------------------------------------------------- /student management/templates/studentdetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/templates/studentdetails.html -------------------------------------------------------------------------------- /student management/templates/triggers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkprocoder/StudentManagement-System-dbms-miniproject/HEAD/student management/templates/triggers.html --------------------------------------------------------------------------------