├── LICENSE ├── README.md ├── classes └── UserClass.php ├── config └── dbconnect.php ├── css ├── bootstrap │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js └── custom │ └── custom.css ├── forgot.php ├── header.php ├── index.php ├── login.php ├── logout.php ├── membership.sql ├── password_reset.php ├── profile.php ├── registration.php ├── verify.php └── views ├── accountSettings.php ├── loginFalse.php ├── loginForm.php ├── loginTrue.php ├── passwordResetForm.php └── registrationForm.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/README.md -------------------------------------------------------------------------------- /classes/UserClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/classes/UserClass.php -------------------------------------------------------------------------------- /config/dbconnect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/config/dbconnect.php -------------------------------------------------------------------------------- /css/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/css/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /css/bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/css/bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /css/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/css/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /css/bootstrap/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/css/bootstrap/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /css/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/css/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /css/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/css/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /css/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/css/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/css/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /css/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/css/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /css/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/css/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /css/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/css/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /css/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/css/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /css/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/css/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /css/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/css/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /css/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/css/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /css/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/css/bootstrap/js/npm.js -------------------------------------------------------------------------------- /css/custom/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/css/custom/custom.css -------------------------------------------------------------------------------- /forgot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/forgot.php -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/header.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/index.php -------------------------------------------------------------------------------- /login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/login.php -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/logout.php -------------------------------------------------------------------------------- /membership.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/membership.sql -------------------------------------------------------------------------------- /password_reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/password_reset.php -------------------------------------------------------------------------------- /profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/profile.php -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/registration.php -------------------------------------------------------------------------------- /verify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/verify.php -------------------------------------------------------------------------------- /views/accountSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/views/accountSettings.php -------------------------------------------------------------------------------- /views/loginFalse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/views/loginFalse.php -------------------------------------------------------------------------------- /views/loginForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/views/loginForm.php -------------------------------------------------------------------------------- /views/loginTrue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/views/loginTrue.php -------------------------------------------------------------------------------- /views/passwordResetForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/views/passwordResetForm.php -------------------------------------------------------------------------------- /views/registrationForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinontcode/Membership-system/HEAD/views/registrationForm.php --------------------------------------------------------------------------------