├── README.md ├── admin ├── connect.php ├── index.php └── signup.php ├── connect.php ├── css └── main.css ├── database └── attsystem.sql ├── img ├── tcr.png └── tcrl.png ├── index.php ├── logout.php ├── reset.php ├── signup.php ├── student ├── account.php ├── connect.php ├── index.php ├── report.php └── students.php └── teacher ├── attendance.php ├── connect.php ├── index.php ├── report.php ├── students.php └── teachers.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushar8848/Attendance-Management-System/HEAD/README.md -------------------------------------------------------------------------------- /admin/connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushar8848/Attendance-Management-System/HEAD/admin/connect.php -------------------------------------------------------------------------------- /admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushar8848/Attendance-Management-System/HEAD/admin/index.php -------------------------------------------------------------------------------- /admin/signup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushar8848/Attendance-Management-System/HEAD/admin/signup.php -------------------------------------------------------------------------------- /connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushar8848/Attendance-Management-System/HEAD/connect.php -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushar8848/Attendance-Management-System/HEAD/css/main.css -------------------------------------------------------------------------------- /database/attsystem.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushar8848/Attendance-Management-System/HEAD/database/attsystem.sql -------------------------------------------------------------------------------- /img/tcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushar8848/Attendance-Management-System/HEAD/img/tcr.png -------------------------------------------------------------------------------- /img/tcrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushar8848/Attendance-Management-System/HEAD/img/tcrl.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushar8848/Attendance-Management-System/HEAD/index.php -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushar8848/Attendance-Management-System/HEAD/logout.php -------------------------------------------------------------------------------- /reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushar8848/Attendance-Management-System/HEAD/reset.php -------------------------------------------------------------------------------- /signup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushar8848/Attendance-Management-System/HEAD/signup.php -------------------------------------------------------------------------------- /student/account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushar8848/Attendance-Management-System/HEAD/student/account.php -------------------------------------------------------------------------------- /student/connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushar8848/Attendance-Management-System/HEAD/student/connect.php -------------------------------------------------------------------------------- /student/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushar8848/Attendance-Management-System/HEAD/student/index.php -------------------------------------------------------------------------------- /student/report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushar8848/Attendance-Management-System/HEAD/student/report.php -------------------------------------------------------------------------------- /student/students.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushar8848/Attendance-Management-System/HEAD/student/students.php -------------------------------------------------------------------------------- /teacher/attendance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushar8848/Attendance-Management-System/HEAD/teacher/attendance.php -------------------------------------------------------------------------------- /teacher/connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushar8848/Attendance-Management-System/HEAD/teacher/connect.php -------------------------------------------------------------------------------- /teacher/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushar8848/Attendance-Management-System/HEAD/teacher/index.php -------------------------------------------------------------------------------- /teacher/report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushar8848/Attendance-Management-System/HEAD/teacher/report.php -------------------------------------------------------------------------------- /teacher/students.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushar8848/Attendance-Management-System/HEAD/teacher/students.php -------------------------------------------------------------------------------- /teacher/teachers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tushar8848/Attendance-Management-System/HEAD/teacher/teachers.php --------------------------------------------------------------------------------