├── images ├── logo.png ├── user2.jpg ├── company.jpg ├── logout.png ├── profile.png └── setting.png ├── emp_images └── doraemon.jpg ├── webfonts ├── fa-brands-400.ttf ├── fa-solid-900.ttf ├── fa-brands-400.woff2 ├── fa-regular-400.ttf ├── fa-regular-400.woff2 ├── fa-solid-900.woff2 ├── fa-v4compatibility.ttf └── fa-v4compatibility.woff2 ├── js ├── emp_man.js ├── panel.js ├── script.js └── edit_profile.js ├── instruction.txt ├── admin ├── admin_logout.php ├── deleteUser.php ├── clearUser.php ├── clearLeave.php ├── admin_sidebar.php ├── admin_login.php ├── admin_panel.php ├── manage_employee.php ├── userApproval.php ├── admin_edit_profile.php └── manage_leave.php ├── database └── connection.php ├── employee ├── emp_logout.php ├── emp_upload_pic.php ├── emp_login.php ├── emp_panel.php ├── leave_req.php └── edit_profile.php ├── css ├── profileimage.css ├── dep_man.css ├── transformations.css ├── panel.css ├── animations.css └── style.css ├── home.php ├── README.md ├── emp_man_sys.sql └── register.php /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Utsav-Khanal/Employee-Management-System/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/user2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Utsav-Khanal/Employee-Management-System/HEAD/images/user2.jpg -------------------------------------------------------------------------------- /images/company.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Utsav-Khanal/Employee-Management-System/HEAD/images/company.jpg -------------------------------------------------------------------------------- /images/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Utsav-Khanal/Employee-Management-System/HEAD/images/logout.png -------------------------------------------------------------------------------- /images/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Utsav-Khanal/Employee-Management-System/HEAD/images/profile.png -------------------------------------------------------------------------------- /images/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Utsav-Khanal/Employee-Management-System/HEAD/images/setting.png -------------------------------------------------------------------------------- /emp_images/doraemon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Utsav-Khanal/Employee-Management-System/HEAD/emp_images/doraemon.jpg -------------------------------------------------------------------------------- /webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Utsav-Khanal/Employee-Management-System/HEAD/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Utsav-Khanal/Employee-Management-System/HEAD/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /js/emp_man.js: -------------------------------------------------------------------------------- 1 | 2 | function deleteUser() { 3 | return Confirm('Are you sure you want to delete this record?'); 4 | } 5 | -------------------------------------------------------------------------------- /webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Utsav-Khanal/Employee-Management-System/HEAD/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Utsav-Khanal/Employee-Management-System/HEAD/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Utsav-Khanal/Employee-Management-System/HEAD/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Utsav-Khanal/Employee-Management-System/HEAD/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Utsav-Khanal/Employee-Management-System/HEAD/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Utsav-Khanal/Employee-Management-System/HEAD/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /instruction.txt: -------------------------------------------------------------------------------- 1 | 1. Import Database sql extension 2 | 3 | ADMIN EMAIL & PASSWORD 4 | admin@gmail.com 5 | -> admin123 6 | 7 | USER EMAIL & PASSWORD 8 | doraemon@gmail.com 9 | -> dora123 10 | 11 | 2. Now you can enjoy EMS -------------------------------------------------------------------------------- /admin/admin_logout.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/connection.php: -------------------------------------------------------------------------------- 1 | connect_error){ 12 | die("Connection Failed: ".$conn->connect_error); 13 | } 14 | //echo "Connected Successfully"; 15 | 16 | ?> -------------------------------------------------------------------------------- /employee/emp_logout.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/deleteUser.php: -------------------------------------------------------------------------------- 1 | alert('User Deleted')"; 13 | 14 | ?> 15 | 16 | 17 | Failed to Delete Records from database"; 21 | } 22 | ?> 23 | -------------------------------------------------------------------------------- /admin/clearUser.php: -------------------------------------------------------------------------------- 1 | alert('Record Deleted')" 14 | 15 | ?> 16 | 17 | 18 | Failed to Delete Records from database"; 22 | } 23 | ?> 24 | -------------------------------------------------------------------------------- /admin/clearLeave.php: -------------------------------------------------------------------------------- 1 | alert('Record Deleted')" 14 | 15 | ?> 16 | 17 | 18 | Failed to Delete Records from database"; 22 | } 23 | ?> 24 | -------------------------------------------------------------------------------- /css/profileimage.css: -------------------------------------------------------------------------------- 1 | .upload{ 2 | width: 125px; 3 | position: relative; 4 | margin: auto; 5 | } 6 | 7 | .upload img{ 8 | border-radius: 50%; 9 | border: 8px solid #DCDCDC; 10 | } 11 | 12 | .upload .round{ 13 | position: absolute; 14 | bottom: 0; 15 | right: 0; 16 | background: #00B4FF; 17 | width: 32px; 18 | height: 32px; 19 | line-height: 33px; 20 | text-align: center; 21 | border-radius: 50%; 22 | overflow: hidden; 23 | } 24 | 25 | .upload .round input[type = "file"]{ 26 | position: absolute; 27 | transform: scale(2); 28 | opacity: 0; 29 | } 30 | 31 | input[type=file]::-webkit-file-upload-button{ 32 | cursor: pointer; 33 | } 34 | -------------------------------------------------------------------------------- /css/dep_man.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Poppins:wght@200&display=swap'); 2 | 3 | body{ 4 | background-color: #f2f2f2; 5 | 6 | } 7 | .man_emp{ 8 | background-color: white; 9 | width: 55%; 10 | padding: 2px 25px; 11 | margin-top: 10%; 12 | margin-left: 30%; 13 | margin-bottom: 10%; 14 | border-top: 5px solid blue; 15 | box-shadow: 0 0 7px 5px rgba(0, 0, 0, 0.5); 16 | } 17 | .man_emp h2{ 18 | font-size: 24px; 19 | line-height: 12px; 20 | padding: 10px; 21 | text-align: center; 22 | } 23 | .emp_manage{ 24 | width: 0; 25 | 26 | } 27 | .table_info{ 28 | width: 90%; 29 | position: relative; 30 | margin: 20px auto; 31 | 32 | } -------------------------------------------------------------------------------- /css/transformations.css: -------------------------------------------------------------------------------- 1 | .bx-rotate-90 2 | { 3 | transform: rotate(90deg); 4 | 5 | -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=1)'; 6 | } 7 | .bx-rotate-180 8 | { 9 | transform: rotate(180deg); 10 | 11 | -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2)'; 12 | } 13 | .bx-rotate-270 14 | { 15 | transform: rotate(270deg); 16 | 17 | -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=3)'; 18 | } 19 | .bx-flip-horizontal 20 | { 21 | transform: scaleX(-1); 22 | 23 | -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)'; 24 | } 25 | .bx-flip-vertical 26 | { 27 | transform: scaleY(-1); 28 | 29 | -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)'; 30 | } 31 | -------------------------------------------------------------------------------- /home.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |
13 |
21 |
34 |
42 |
29 |
37 |