├── LICENSE ├── README.md ├── assets ├── scripts.js └── styles.css ├── banking.sql ├── bootstrap ├── css │ ├── bootstrap-responsive.css │ ├── bootstrap-responsive.min.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ └── datepicker.css ├── img │ ├── glyphicons-halflings-white.png │ └── glyphicons-halflings.png └── js │ ├── bootstrap-datepicker.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.9.1.min.js │ └── moment.js ├── class ├── class.error.php ├── class.money.php └── class.user.php ├── config └── dbconfig.php ├── fpass.php ├── login.php ├── mailer ├── LICENSE ├── PHPMailerAutoload.php ├── README.md ├── SECURITY ├── VERSION ├── changelog.md ├── class.phpmailer.php ├── class.phpmaileroauth.php ├── class.phpmaileroauthgoogle.php ├── class.pop3.php ├── class.smtp.php ├── composer.json ├── composer.lock ├── extras │ ├── EasyPeasyICS.php │ ├── README.md │ ├── htmlfilter.php │ └── ntlm_sasl_client.php ├── get_oauth_token.php ├── language │ ├── phpmailer.lang-am.php │ ├── phpmailer.lang-ar.php │ ├── phpmailer.lang-az.php │ ├── phpmailer.lang-be.php │ ├── phpmailer.lang-bg.php │ ├── phpmailer.lang-br.php │ ├── phpmailer.lang-ca.php │ ├── phpmailer.lang-ch.php │ ├── phpmailer.lang-cz.php │ ├── phpmailer.lang-da.php │ ├── phpmailer.lang-de.php │ ├── phpmailer.lang-el.php │ ├── phpmailer.lang-eo.php │ ├── phpmailer.lang-es.php │ ├── phpmailer.lang-et.php │ ├── phpmailer.lang-fa.php │ ├── phpmailer.lang-fi.php │ ├── phpmailer.lang-fo.php │ ├── phpmailer.lang-fr.php │ ├── phpmailer.lang-gl.php │ ├── phpmailer.lang-he.php │ ├── phpmailer.lang-hr.php │ ├── phpmailer.lang-hu.php │ ├── phpmailer.lang-id.php │ ├── phpmailer.lang-it.php │ ├── phpmailer.lang-ja.php │ ├── phpmailer.lang-ka.php │ ├── phpmailer.lang-ko.php │ ├── phpmailer.lang-lt.php │ ├── phpmailer.lang-lv.php │ ├── phpmailer.lang-ms.php │ ├── phpmailer.lang-nl.php │ ├── phpmailer.lang-no.php │ ├── phpmailer.lang-pl.php │ ├── phpmailer.lang-pt.php │ ├── phpmailer.lang-ro.php │ ├── phpmailer.lang-ru.php │ ├── phpmailer.lang-se.php │ ├── phpmailer.lang-sk.php │ ├── phpmailer.lang-sl.php │ ├── phpmailer.lang-sr.php │ ├── phpmailer.lang-tr.php │ ├── phpmailer.lang-uk.php │ ├── phpmailer.lang-vi.php │ ├── phpmailer.lang-zh.php │ └── phpmailer.lang-zh_cn.php └── travis.phpunit.xml.dist ├── my ├── activity.php ├── deposit.php ├── home.php ├── logout.php ├── profile.php └── transfer.php ├── resetpass.php ├── signup.php ├── template ├── footer_ac.php ├── header.php ├── menu_ac.php └── misc.php └── verify.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/README.md -------------------------------------------------------------------------------- /assets/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/assets/scripts.js -------------------------------------------------------------------------------- /assets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/assets/styles.css -------------------------------------------------------------------------------- /banking.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/banking.sql -------------------------------------------------------------------------------- /bootstrap/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/bootstrap/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /bootstrap/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/bootstrap/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /bootstrap/css/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/bootstrap/css/datepicker.css -------------------------------------------------------------------------------- /bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /bootstrap/js/bootstrap-datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/bootstrap/js/bootstrap-datepicker.js -------------------------------------------------------------------------------- /bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /bootstrap/js/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/bootstrap/js/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /bootstrap/js/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/bootstrap/js/moment.js -------------------------------------------------------------------------------- /class/class.error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/class/class.error.php -------------------------------------------------------------------------------- /class/class.money.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/class/class.money.php -------------------------------------------------------------------------------- /class/class.user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/class/class.user.php -------------------------------------------------------------------------------- /config/dbconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/config/dbconfig.php -------------------------------------------------------------------------------- /fpass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/fpass.php -------------------------------------------------------------------------------- /login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/login.php -------------------------------------------------------------------------------- /mailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/LICENSE -------------------------------------------------------------------------------- /mailer/PHPMailerAutoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/PHPMailerAutoload.php -------------------------------------------------------------------------------- /mailer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/README.md -------------------------------------------------------------------------------- /mailer/SECURITY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/SECURITY -------------------------------------------------------------------------------- /mailer/VERSION: -------------------------------------------------------------------------------- 1 | 5.2.16 -------------------------------------------------------------------------------- /mailer/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/changelog.md -------------------------------------------------------------------------------- /mailer/class.phpmailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/class.phpmailer.php -------------------------------------------------------------------------------- /mailer/class.phpmaileroauth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/class.phpmaileroauth.php -------------------------------------------------------------------------------- /mailer/class.phpmaileroauthgoogle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/class.phpmaileroauthgoogle.php -------------------------------------------------------------------------------- /mailer/class.pop3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/class.pop3.php -------------------------------------------------------------------------------- /mailer/class.smtp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/class.smtp.php -------------------------------------------------------------------------------- /mailer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/composer.json -------------------------------------------------------------------------------- /mailer/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/composer.lock -------------------------------------------------------------------------------- /mailer/extras/EasyPeasyICS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/extras/EasyPeasyICS.php -------------------------------------------------------------------------------- /mailer/extras/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/extras/README.md -------------------------------------------------------------------------------- /mailer/extras/htmlfilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/extras/htmlfilter.php -------------------------------------------------------------------------------- /mailer/extras/ntlm_sasl_client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/extras/ntlm_sasl_client.php -------------------------------------------------------------------------------- /mailer/get_oauth_token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/get_oauth_token.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-am.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-am.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-ar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-ar.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-az.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-az.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-be.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-be.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-bg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-bg.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-br.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-br.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-ca.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-ca.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-ch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-ch.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-cz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-cz.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-da.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-da.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-de.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-el.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-el.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-eo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-eo.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-es.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-et.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-et.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-fa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-fa.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-fi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-fi.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-fo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-fo.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-fr.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-gl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-gl.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-he.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-he.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-hr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-hr.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-hu.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-id.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-it.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-ja.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-ja.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-ka.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-ka.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-ko.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-lt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-lt.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-lv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-lv.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-ms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-ms.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-nl.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-no.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-no.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-pl.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-pt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-pt.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-ro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-ro.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-ru.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-se.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-se.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-sk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-sk.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-sl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-sl.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-sr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-sr.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-tr.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-uk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-uk.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-vi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-vi.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-zh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-zh.php -------------------------------------------------------------------------------- /mailer/language/phpmailer.lang-zh_cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/language/phpmailer.lang-zh_cn.php -------------------------------------------------------------------------------- /mailer/travis.phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/mailer/travis.phpunit.xml.dist -------------------------------------------------------------------------------- /my/activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/my/activity.php -------------------------------------------------------------------------------- /my/deposit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/my/deposit.php -------------------------------------------------------------------------------- /my/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/my/home.php -------------------------------------------------------------------------------- /my/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/my/logout.php -------------------------------------------------------------------------------- /my/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/my/profile.php -------------------------------------------------------------------------------- /my/transfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/my/transfer.php -------------------------------------------------------------------------------- /resetpass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/resetpass.php -------------------------------------------------------------------------------- /signup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/signup.php -------------------------------------------------------------------------------- /template/footer_ac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/template/footer_ac.php -------------------------------------------------------------------------------- /template/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/template/header.php -------------------------------------------------------------------------------- /template/menu_ac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/template/menu_ac.php -------------------------------------------------------------------------------- /template/misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/template/misc.php -------------------------------------------------------------------------------- /verify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baoc75/php-payment-gateway/HEAD/verify.php --------------------------------------------------------------------------------