├── GUIDE.txt ├── README.md ├── admin ├── admin_change_password.php ├── admin_dashboard.php ├── admin_logout.php ├── create_employee.php ├── employee_details.php ├── leave.php ├── leave_report.php ├── login.html ├── login.php ├── salary_report.php └── view_employee_details.php ├── images ├── Attendance.jpg ├── Profile.jpg ├── background.jpg ├── employee.jpg ├── employee_data.jpg └── user-friendly.jpg ├── index.html ├── sql └── hrms.sql └── user ├── edit_profile.php ├── employee_change_password.php ├── employee_dashboard.php ├── employee_login.php ├── employee_logout.php ├── leave_request.php └── salary_report.php /GUIDE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/GUIDE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # HR-Management-System-using-PHP -------------------------------------------------------------------------------- /admin/admin_change_password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/admin/admin_change_password.php -------------------------------------------------------------------------------- /admin/admin_dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/admin/admin_dashboard.php -------------------------------------------------------------------------------- /admin/admin_logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/admin/admin_logout.php -------------------------------------------------------------------------------- /admin/create_employee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/admin/create_employee.php -------------------------------------------------------------------------------- /admin/employee_details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/admin/employee_details.php -------------------------------------------------------------------------------- /admin/leave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/admin/leave.php -------------------------------------------------------------------------------- /admin/leave_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/admin/leave_report.php -------------------------------------------------------------------------------- /admin/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/admin/login.html -------------------------------------------------------------------------------- /admin/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/admin/login.php -------------------------------------------------------------------------------- /admin/salary_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/admin/salary_report.php -------------------------------------------------------------------------------- /admin/view_employee_details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/admin/view_employee_details.php -------------------------------------------------------------------------------- /images/Attendance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/images/Attendance.jpg -------------------------------------------------------------------------------- /images/Profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/images/Profile.jpg -------------------------------------------------------------------------------- /images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/images/background.jpg -------------------------------------------------------------------------------- /images/employee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/images/employee.jpg -------------------------------------------------------------------------------- /images/employee_data.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/images/employee_data.jpg -------------------------------------------------------------------------------- /images/user-friendly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/images/user-friendly.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/index.html -------------------------------------------------------------------------------- /sql/hrms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/sql/hrms.sql -------------------------------------------------------------------------------- /user/edit_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/user/edit_profile.php -------------------------------------------------------------------------------- /user/employee_change_password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/user/employee_change_password.php -------------------------------------------------------------------------------- /user/employee_dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/user/employee_dashboard.php -------------------------------------------------------------------------------- /user/employee_login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/user/employee_login.php -------------------------------------------------------------------------------- /user/employee_logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/user/employee_logout.php -------------------------------------------------------------------------------- /user/leave_request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/user/leave_request.php -------------------------------------------------------------------------------- /user/salary_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shanchandran/HR-Management-System-using-PHP/HEAD/user/salary_report.php --------------------------------------------------------------------------------