├── LICENSE ├── OTP.php ├── README.md ├── Reset_Password.php ├── account.php ├── admin ├── add_customer.js ├── add_customer.php ├── add_fund.js ├── add_fund.php ├── index.php ├── take_action_on_customer.js ├── take_action_on_customer.php ├── update_customer.js └── update_customer.php ├── assets ├── css │ ├── _colors.css │ ├── desktop.css │ ├── layout.css │ ├── mobile.css │ └── tablet.css ├── images │ ├── Digital-Banking.jpg │ ├── ajax_clock.gif │ ├── client-home.jpeg │ ├── error.png │ ├── hourglass.png │ ├── icon.png │ ├── logo.png │ ├── si-catagory-bankingAndFinance@2x.webp │ └── taking-digital.jpg └── js │ ├── client_scroll_shadow.js │ └── main.js ├── classes ├── Database.php ├── History.php ├── Include.php └── Password_Hasher.php ├── client ├── index.php ├── route-pages │ ├── dashboard.php │ ├── history.php │ ├── notifications.php │ ├── search.php │ ├── settings.php │ └── transfer.php ├── route.js ├── search.js ├── search.php ├── transfer.js ├── transfer.php ├── update_customer.js └── update_customer.php ├── config.php ├── db └── MySQL-DB-Scheme.sql ├── error.php ├── favicon.ico ├── inc ├── add_customer.php ├── add_fund.php ├── admin_home.php ├── edit_customer.php ├── footer.php ├── head.php ├── manage_customers.php ├── top.php └── top_admin.php ├── index.php ├── initialize.php ├── libs ├── bootstrap │ ├── bootstrap-icons.css │ ├── bootstrap-icons.json │ ├── bootstrap-icons.scss │ └── fonts │ │ ├── bootstrap-icons.woff │ │ └── bootstrap-icons.woff2 └── core │ ├── Password_Hasher - Copy.php │ └── compress.php ├── login_client.js ├── login_server.php ├── logout.php └── who_is.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/LICENSE -------------------------------------------------------------------------------- /OTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/OTP.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/README.md -------------------------------------------------------------------------------- /Reset_Password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/Reset_Password.php -------------------------------------------------------------------------------- /account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/account.php -------------------------------------------------------------------------------- /admin/add_customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/admin/add_customer.js -------------------------------------------------------------------------------- /admin/add_customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/admin/add_customer.php -------------------------------------------------------------------------------- /admin/add_fund.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/admin/add_fund.js -------------------------------------------------------------------------------- /admin/add_fund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/admin/add_fund.php -------------------------------------------------------------------------------- /admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/admin/index.php -------------------------------------------------------------------------------- /admin/take_action_on_customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/admin/take_action_on_customer.js -------------------------------------------------------------------------------- /admin/take_action_on_customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/admin/take_action_on_customer.php -------------------------------------------------------------------------------- /admin/update_customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/admin/update_customer.js -------------------------------------------------------------------------------- /admin/update_customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/admin/update_customer.php -------------------------------------------------------------------------------- /assets/css/_colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/assets/css/_colors.css -------------------------------------------------------------------------------- /assets/css/desktop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/assets/css/desktop.css -------------------------------------------------------------------------------- /assets/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/assets/css/layout.css -------------------------------------------------------------------------------- /assets/css/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/assets/css/mobile.css -------------------------------------------------------------------------------- /assets/css/tablet.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/images/Digital-Banking.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/assets/images/Digital-Banking.jpg -------------------------------------------------------------------------------- /assets/images/ajax_clock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/assets/images/ajax_clock.gif -------------------------------------------------------------------------------- /assets/images/client-home.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/assets/images/client-home.jpeg -------------------------------------------------------------------------------- /assets/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/assets/images/error.png -------------------------------------------------------------------------------- /assets/images/hourglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/assets/images/hourglass.png -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/si-catagory-bankingAndFinance@2x.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/assets/images/si-catagory-bankingAndFinance@2x.webp -------------------------------------------------------------------------------- /assets/images/taking-digital.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/assets/images/taking-digital.jpg -------------------------------------------------------------------------------- /assets/js/client_scroll_shadow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/assets/js/client_scroll_shadow.js -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/assets/js/main.js -------------------------------------------------------------------------------- /classes/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/classes/Database.php -------------------------------------------------------------------------------- /classes/History.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/classes/History.php -------------------------------------------------------------------------------- /classes/Include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/classes/Include.php -------------------------------------------------------------------------------- /classes/Password_Hasher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/classes/Password_Hasher.php -------------------------------------------------------------------------------- /client/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/client/index.php -------------------------------------------------------------------------------- /client/route-pages/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/client/route-pages/dashboard.php -------------------------------------------------------------------------------- /client/route-pages/history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/client/route-pages/history.php -------------------------------------------------------------------------------- /client/route-pages/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/client/route-pages/notifications.php -------------------------------------------------------------------------------- /client/route-pages/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/client/route-pages/search.php -------------------------------------------------------------------------------- /client/route-pages/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/client/route-pages/settings.php -------------------------------------------------------------------------------- /client/route-pages/transfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/client/route-pages/transfer.php -------------------------------------------------------------------------------- /client/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/client/route.js -------------------------------------------------------------------------------- /client/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/client/search.js -------------------------------------------------------------------------------- /client/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/client/search.php -------------------------------------------------------------------------------- /client/transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/client/transfer.js -------------------------------------------------------------------------------- /client/transfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/client/transfer.php -------------------------------------------------------------------------------- /client/update_customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/client/update_customer.js -------------------------------------------------------------------------------- /client/update_customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/client/update_customer.php -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/config.php -------------------------------------------------------------------------------- /db/MySQL-DB-Scheme.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/db/MySQL-DB-Scheme.sql -------------------------------------------------------------------------------- /error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/error.php -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/favicon.ico -------------------------------------------------------------------------------- /inc/add_customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/inc/add_customer.php -------------------------------------------------------------------------------- /inc/add_fund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/inc/add_fund.php -------------------------------------------------------------------------------- /inc/admin_home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/inc/admin_home.php -------------------------------------------------------------------------------- /inc/edit_customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/inc/edit_customer.php -------------------------------------------------------------------------------- /inc/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/inc/footer.php -------------------------------------------------------------------------------- /inc/head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/inc/head.php -------------------------------------------------------------------------------- /inc/manage_customers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/inc/manage_customers.php -------------------------------------------------------------------------------- /inc/top.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/inc/top.php -------------------------------------------------------------------------------- /inc/top_admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/inc/top_admin.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/index.php -------------------------------------------------------------------------------- /initialize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/initialize.php -------------------------------------------------------------------------------- /libs/bootstrap/bootstrap-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/libs/bootstrap/bootstrap-icons.css -------------------------------------------------------------------------------- /libs/bootstrap/bootstrap-icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/libs/bootstrap/bootstrap-icons.json -------------------------------------------------------------------------------- /libs/bootstrap/bootstrap-icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/libs/bootstrap/bootstrap-icons.scss -------------------------------------------------------------------------------- /libs/bootstrap/fonts/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/libs/bootstrap/fonts/bootstrap-icons.woff -------------------------------------------------------------------------------- /libs/bootstrap/fonts/bootstrap-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/libs/bootstrap/fonts/bootstrap-icons.woff2 -------------------------------------------------------------------------------- /libs/core/Password_Hasher - Copy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/libs/core/Password_Hasher - Copy.php -------------------------------------------------------------------------------- /libs/core/compress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/libs/core/compress.php -------------------------------------------------------------------------------- /login_client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/login_client.js -------------------------------------------------------------------------------- /login_server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/login_server.php -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/logout.php -------------------------------------------------------------------------------- /who_is.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-henen/Banking-App-in-PHP-MySQL-JavaScript-HTML-CSS/HEAD/who_is.php --------------------------------------------------------------------------------