├── .gitignore ├── .htaccess ├── AccountREADME.md ├── README.md ├── addkey.php ├── api ├── account.php ├── api.php ├── apps.php ├── apps.sql └── test.php ├── authclass.php ├── config.php ├── create.php ├── css ├── 1140.css ├── ie.css └── styles.css ├── diff.sql ├── donate.php ├── email.php ├── faq.php ├── functions.php ├── images ├── add.png ├── amrc.png ├── chrome.png ├── download.png ├── firefox.png ├── github.png ├── greasemonkey.png ├── idevice.png ├── laptop.png ├── ok.png ├── reddit-is-fun-golden.png ├── reddit-is-fun.png └── send-user.png ├── index.php ├── js └── css3-mediaqueries.js ├── linkclass.php ├── login.php ├── logout.php ├── mysql.sql ├── pbkdf2.php ├── plugin.php ├── profile.php ├── register.php ├── reset.php ├── router.php ├── session.php └── userclass.php /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | .idea/ 4 | phpmailer/ -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drakeapps/synccit/HEAD/.htaccess -------------------------------------------------------------------------------- /AccountREADME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drakeapps/synccit/HEAD/AccountREADME.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drakeapps/synccit/HEAD/README.md -------------------------------------------------------------------------------- /addkey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drakeapps/synccit/HEAD/addkey.php -------------------------------------------------------------------------------- /api/account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drakeapps/synccit/HEAD/api/account.php -------------------------------------------------------------------------------- /api/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drakeapps/synccit/HEAD/api/api.php -------------------------------------------------------------------------------- /api/apps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drakeapps/synccit/HEAD/api/apps.php -------------------------------------------------------------------------------- /api/apps.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drakeapps/synccit/HEAD/api/apps.sql -------------------------------------------------------------------------------- /api/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drakeapps/synccit/HEAD/api/test.php -------------------------------------------------------------------------------- /authclass.php: -------------------------------------------------------------------------------- 1 |