├── .github └── FUNDING.yml ├── .gitiattributes ├── .gitignore ├── .htaccess ├── README.md ├── app ├── .htaccess ├── app.php ├── config │ ├── config.php │ └── site.php ├── controllers │ ├── BaseController.php │ ├── Blog.php │ └── Kik.php ├── core │ ├── Database.php │ ├── Hash.php │ ├── Input.php │ ├── Main.php │ ├── Route.php │ ├── Session.php │ ├── User.php │ └── View.php ├── helpers.php ├── models │ ├── Blog_model.php │ ├── Kik_model.php │ └── Player_model.php └── routes.php ├── assets ├── css │ ├── bootstrap.min.css │ ├── go.css │ └── style.css ├── img │ ├── home-hero.jpeg │ ├── loading.gif │ ├── logo-dark.png │ ├── logo-kik.png │ ├── logo.png │ └── tinder.png └── js │ ├── bootstrap.min.js │ ├── jquery.jTinder.js │ ├── jquery.mobile.custom.js │ └── jquery.mobile.custom.min.js ├── database.sql ├── index.php ├── installation - instruction.txt ├── save-project.sh ├── screenshots ├── kikornot-part2.png └── kikornot.png └── templates ├── .htaccess ├── analytics.inc.php ├── append.php ├── footer.php ├── forgot.php ├── forgotDone.php ├── go.php ├── header.php ├── index.php ├── notFound.php ├── register.php └── signin.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: pH-7 2 | ko_fi: phenry 3 | -------------------------------------------------------------------------------- /.gitiattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/.gitiattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/.htaccess -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/README.md -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/app/.htaccess -------------------------------------------------------------------------------- /app/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/app/app.php -------------------------------------------------------------------------------- /app/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/app/config/config.php -------------------------------------------------------------------------------- /app/config/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/app/config/site.php -------------------------------------------------------------------------------- /app/controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/app/controllers/BaseController.php -------------------------------------------------------------------------------- /app/controllers/Blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/app/controllers/Blog.php -------------------------------------------------------------------------------- /app/controllers/Kik.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/app/controllers/Kik.php -------------------------------------------------------------------------------- /app/core/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/app/core/Database.php -------------------------------------------------------------------------------- /app/core/Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/app/core/Hash.php -------------------------------------------------------------------------------- /app/core/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/app/core/Input.php -------------------------------------------------------------------------------- /app/core/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/app/core/Main.php -------------------------------------------------------------------------------- /app/core/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/app/core/Route.php -------------------------------------------------------------------------------- /app/core/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/app/core/Session.php -------------------------------------------------------------------------------- /app/core/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/app/core/User.php -------------------------------------------------------------------------------- /app/core/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/app/core/View.php -------------------------------------------------------------------------------- /app/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/app/helpers.php -------------------------------------------------------------------------------- /app/models/Blog_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/app/models/Blog_model.php -------------------------------------------------------------------------------- /app/models/Kik_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/app/models/Kik_model.php -------------------------------------------------------------------------------- /app/models/Player_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/app/models/Player_model.php -------------------------------------------------------------------------------- /app/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/app/routes.php -------------------------------------------------------------------------------- /assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /assets/css/go.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/assets/css/go.css -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/img/home-hero.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/assets/img/home-hero.jpeg -------------------------------------------------------------------------------- /assets/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/assets/img/loading.gif -------------------------------------------------------------------------------- /assets/img/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/assets/img/logo-dark.png -------------------------------------------------------------------------------- /assets/img/logo-kik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/assets/img/logo-kik.png -------------------------------------------------------------------------------- /assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/assets/img/logo.png -------------------------------------------------------------------------------- /assets/img/tinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/assets/img/tinder.png -------------------------------------------------------------------------------- /assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/js/jquery.jTinder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/assets/js/jquery.jTinder.js -------------------------------------------------------------------------------- /assets/js/jquery.mobile.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/assets/js/jquery.mobile.custom.js -------------------------------------------------------------------------------- /assets/js/jquery.mobile.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/assets/js/jquery.mobile.custom.min.js -------------------------------------------------------------------------------- /database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/database.sql -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/index.php -------------------------------------------------------------------------------- /installation - instruction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/installation - instruction.txt -------------------------------------------------------------------------------- /save-project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/save-project.sh -------------------------------------------------------------------------------- /screenshots/kikornot-part2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/screenshots/kikornot-part2.png -------------------------------------------------------------------------------- /screenshots/kikornot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/screenshots/kikornot.png -------------------------------------------------------------------------------- /templates/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/templates/.htaccess -------------------------------------------------------------------------------- /templates/analytics.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/templates/analytics.inc.php -------------------------------------------------------------------------------- /templates/append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/templates/append.php -------------------------------------------------------------------------------- /templates/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/templates/footer.php -------------------------------------------------------------------------------- /templates/forgot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/templates/forgot.php -------------------------------------------------------------------------------- /templates/forgotDone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/templates/forgotDone.php -------------------------------------------------------------------------------- /templates/go.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/templates/go.php -------------------------------------------------------------------------------- /templates/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/templates/header.php -------------------------------------------------------------------------------- /templates/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/templates/index.php -------------------------------------------------------------------------------- /templates/notFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/templates/notFound.php -------------------------------------------------------------------------------- /templates/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/templates/register.php -------------------------------------------------------------------------------- /templates/signin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AwesomeMobileApps/kikder-dating-swipe-app/HEAD/templates/signin.php --------------------------------------------------------------------------------