├── .gitattributes ├── .gitignore ├── README.md ├── _inc └── dbconn.php ├── account_summary.php ├── add_beneficiary.php ├── add_beneficiary_process.php ├── add_customer.php ├── add_staff.php ├── addcustomer.php ├── addstaff.php ├── admin_hompage.php ├── admin_logout.php ├── admin_navbar.php ├── adminlogin.php ├── alter_customer.php ├── alter_staff.php ├── bank_db.sql ├── change_password.php ├── change_password_customer.php ├── change_password_staff.php ├── contact.php ├── customer_account_statement.php ├── customer_account_statement_date.php ├── customer_account_summary.php ├── customer_issue_atm.php ├── customer_issue_atm_process.php ├── customer_logout.php ├── customer_mini_statement.php ├── customer_navbar.php ├── customer_personal_details.php ├── customer_transfer.php ├── customer_transfer_process.php ├── delete_beneficiary.php ├── delete_customer.php ├── delete_staff.php ├── display_beneficiary.php ├── display_customer.php ├── display_staff.php ├── editcustomer.php ├── editprofile.php ├── editstaff.php ├── faq.php ├── features.php ├── footer.php ├── header.jpg ├── header.php ├── home.jpg ├── index.php ├── nbproject ├── private │ ├── private.properties │ └── private.xml ├── project.properties └── project.xml ├── newcss.css ├── no-js.php ├── safeonlinebanking.php ├── staff_approve_beneficiery.php ├── staff_atm_approve.php ├── staff_atm_approve_process.php ├── staff_beneficiary.php ├── staff_cheque_approve.php ├── staff_cheque_approve_process.php ├── staff_homepage.php ├── staff_login.php ├── staff_logout.php ├── staff_navbar.php └── t&c.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/README.md -------------------------------------------------------------------------------- /_inc/dbconn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/_inc/dbconn.php -------------------------------------------------------------------------------- /account_summary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/account_summary.php -------------------------------------------------------------------------------- /add_beneficiary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/add_beneficiary.php -------------------------------------------------------------------------------- /add_beneficiary_process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/add_beneficiary_process.php -------------------------------------------------------------------------------- /add_customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/add_customer.php -------------------------------------------------------------------------------- /add_staff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/add_staff.php -------------------------------------------------------------------------------- /addcustomer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/addcustomer.php -------------------------------------------------------------------------------- /addstaff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/addstaff.php -------------------------------------------------------------------------------- /admin_hompage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/admin_hompage.php -------------------------------------------------------------------------------- /admin_logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/admin_logout.php -------------------------------------------------------------------------------- /admin_navbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/admin_navbar.php -------------------------------------------------------------------------------- /adminlogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/adminlogin.php -------------------------------------------------------------------------------- /alter_customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/alter_customer.php -------------------------------------------------------------------------------- /alter_staff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/alter_staff.php -------------------------------------------------------------------------------- /bank_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/bank_db.sql -------------------------------------------------------------------------------- /change_password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/change_password.php -------------------------------------------------------------------------------- /change_password_customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/change_password_customer.php -------------------------------------------------------------------------------- /change_password_staff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/change_password_staff.php -------------------------------------------------------------------------------- /contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/contact.php -------------------------------------------------------------------------------- /customer_account_statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/customer_account_statement.php -------------------------------------------------------------------------------- /customer_account_statement_date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/customer_account_statement_date.php -------------------------------------------------------------------------------- /customer_account_summary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/customer_account_summary.php -------------------------------------------------------------------------------- /customer_issue_atm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/customer_issue_atm.php -------------------------------------------------------------------------------- /customer_issue_atm_process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/customer_issue_atm_process.php -------------------------------------------------------------------------------- /customer_logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/customer_logout.php -------------------------------------------------------------------------------- /customer_mini_statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/customer_mini_statement.php -------------------------------------------------------------------------------- /customer_navbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/customer_navbar.php -------------------------------------------------------------------------------- /customer_personal_details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/customer_personal_details.php -------------------------------------------------------------------------------- /customer_transfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/customer_transfer.php -------------------------------------------------------------------------------- /customer_transfer_process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/customer_transfer_process.php -------------------------------------------------------------------------------- /delete_beneficiary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/delete_beneficiary.php -------------------------------------------------------------------------------- /delete_customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/delete_customer.php -------------------------------------------------------------------------------- /delete_staff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/delete_staff.php -------------------------------------------------------------------------------- /display_beneficiary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/display_beneficiary.php -------------------------------------------------------------------------------- /display_customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/display_customer.php -------------------------------------------------------------------------------- /display_staff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/display_staff.php -------------------------------------------------------------------------------- /editcustomer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/editcustomer.php -------------------------------------------------------------------------------- /editprofile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/editprofile.php -------------------------------------------------------------------------------- /editstaff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/editstaff.php -------------------------------------------------------------------------------- /faq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/faq.php -------------------------------------------------------------------------------- /features.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/features.php -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/footer.php -------------------------------------------------------------------------------- /header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/header.jpg -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/header.php -------------------------------------------------------------------------------- /home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/home.jpg -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/index.php -------------------------------------------------------------------------------- /nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/nbproject/private/private.properties -------------------------------------------------------------------------------- /nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/nbproject/private/private.xml -------------------------------------------------------------------------------- /nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/nbproject/project.properties -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/nbproject/project.xml -------------------------------------------------------------------------------- /newcss.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/newcss.css -------------------------------------------------------------------------------- /no-js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/no-js.php -------------------------------------------------------------------------------- /safeonlinebanking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/safeonlinebanking.php -------------------------------------------------------------------------------- /staff_approve_beneficiery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/staff_approve_beneficiery.php -------------------------------------------------------------------------------- /staff_atm_approve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/staff_atm_approve.php -------------------------------------------------------------------------------- /staff_atm_approve_process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/staff_atm_approve_process.php -------------------------------------------------------------------------------- /staff_beneficiary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/staff_beneficiary.php -------------------------------------------------------------------------------- /staff_cheque_approve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/staff_cheque_approve.php -------------------------------------------------------------------------------- /staff_cheque_approve_process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/staff_cheque_approve_process.php -------------------------------------------------------------------------------- /staff_homepage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/staff_homepage.php -------------------------------------------------------------------------------- /staff_login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/staff_login.php -------------------------------------------------------------------------------- /staff_logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/staff_logout.php -------------------------------------------------------------------------------- /staff_navbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/staff_navbar.php -------------------------------------------------------------------------------- /t&c.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g33kyrash/Online-Banking-system/HEAD/t&c.php --------------------------------------------------------------------------------