├── LICENSE ├── README.md ├── admin ├── admin_menu.php ├── index.php ├── site_management.php ├── ticket_management.php └── user_management.php ├── authenticate └── index.php ├── config.php ├── core ├── admin.php ├── db.php ├── includes │ ├── foot.php │ └── head.php ├── process.php ├── tickets.php ├── time.php └── users.php ├── css ├── normalize.css ├── select-down.png └── skeleton.css ├── index.php ├── init.php ├── js └── ajax.js ├── logout.php ├── settings └── index.php └── ticket └── index.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/README.md -------------------------------------------------------------------------------- /admin/admin_menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/admin/admin_menu.php -------------------------------------------------------------------------------- /admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/admin/index.php -------------------------------------------------------------------------------- /admin/site_management.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/admin/site_management.php -------------------------------------------------------------------------------- /admin/ticket_management.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/admin/ticket_management.php -------------------------------------------------------------------------------- /admin/user_management.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/admin/user_management.php -------------------------------------------------------------------------------- /authenticate/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/authenticate/index.php -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/config.php -------------------------------------------------------------------------------- /core/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/core/admin.php -------------------------------------------------------------------------------- /core/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/core/db.php -------------------------------------------------------------------------------- /core/includes/foot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/core/includes/foot.php -------------------------------------------------------------------------------- /core/includes/head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/core/includes/head.php -------------------------------------------------------------------------------- /core/process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/core/process.php -------------------------------------------------------------------------------- /core/tickets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/core/tickets.php -------------------------------------------------------------------------------- /core/time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/core/time.php -------------------------------------------------------------------------------- /core/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/core/users.php -------------------------------------------------------------------------------- /css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/css/normalize.css -------------------------------------------------------------------------------- /css/select-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/css/select-down.png -------------------------------------------------------------------------------- /css/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/css/skeleton.css -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/index.php -------------------------------------------------------------------------------- /init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/init.php -------------------------------------------------------------------------------- /js/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/js/ajax.js -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/logout.php -------------------------------------------------------------------------------- /settings/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/settings/index.php -------------------------------------------------------------------------------- /ticket/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shameemreza/helpdesk/HEAD/ticket/index.php --------------------------------------------------------------------------------