├── client_labs ├── static │ ├── .gitkeep │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 ├── .eslintignore ├── src │ ├── assets │ │ ├── css │ │ │ ├── variables.scss │ │ │ └── global.scss │ │ ├── logo.png │ │ └── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ ├── env.example.js │ ├── pages │ │ ├── DashboardPage.vue │ │ ├── ChatPage.vue │ │ ├── ForgotPassword.vue │ │ ├── ResetPassword.vue │ │ └── LoginPage.vue │ ├── components │ │ ├── Hello.vue │ │ ├── private-message │ │ │ ├── PrivateMessageSidebar.vue │ │ │ ├── PrivateMessageView.vue │ │ │ ├── PrivateMessageSent.vue │ │ │ ├── PrivateMessageInbox.vue │ │ │ ├── PrivateMessageCompose.vue │ │ │ ├── PrivateMessageNotificationDropdown.vue │ │ │ └── privateMessageStore.js │ │ ├── user │ │ │ └── userStore.js │ │ ├── chat │ │ │ ├── ChatWidget.vue │ │ │ ├── ChatUserList.vue │ │ │ ├── chatStore.js │ │ │ └── ChatAddWidget.vue │ │ └── TopMenu.vue │ ├── store.js │ ├── plugins │ │ └── Logger.js │ ├── App.vue │ ├── config.js │ └── main.js ├── config │ ├── prod.env.js │ ├── dev.env.js │ └── index.js ├── .gitignore ├── .babelrc ├── .editorconfig ├── build │ ├── dev-client.js │ ├── build.js │ ├── webpack.dev.conf.js │ ├── utils.js │ ├── dev-server.js │ ├── webpack.base.conf.js │ └── webpack.prod.conf.js ├── index.html ├── .eslintrc.js ├── README.md └── package.json ├── server_labs ├── public │ ├── favicon.ico │ ├── robots.txt │ ├── .htaccess │ ├── web.config │ └── index.php ├── database │ ├── seeds │ │ ├── .gitkeep │ │ ├── DatabaseSeeder.php │ │ └── UsersTableSeeder.php │ ├── .gitignore │ ├── migrations │ │ ├── .gitkeep │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ ├── 2017_03_22_152303_create_tokens_table.php │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2016_10_20_172729_create_chats_table.php │ │ └── 2016_12_24_124836_create_private_messages_table.php │ └── factories │ │ └── ModelFactory.php ├── resources │ ├── views │ │ ├── vendor │ │ │ └── .gitkeep │ │ ├── mails │ │ │ └── forgot-password.blade.php │ │ ├── errors │ │ │ └── 503.blade.php │ │ └── welcome.blade.php │ ├── assets │ │ ├── sass │ │ │ ├── app.scss │ │ │ └── _variables.scss │ │ └── js │ │ │ ├── app.js │ │ │ ├── components │ │ │ └── Example.vue │ │ │ └── bootstrap.js │ └── lang │ │ └── en │ │ ├── pagination.php │ │ ├── auth.php │ │ ├── passwords.php │ │ └── validation.php ├── storage │ ├── logs │ │ └── .gitignore │ ├── app │ │ ├── public │ │ │ └── .gitignore │ │ └── .gitignore │ ├── framework │ │ ├── cache │ │ │ └── .gitignore │ │ ├── views │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ └── .gitignore │ ├── oauth-public.key │ └── oauth-private.key ├── bootstrap │ ├── cache │ │ └── .gitignore │ ├── autoload.php │ └── app.php ├── .gitattributes ├── routes │ ├── web.php │ ├── console.php │ └── api.php ├── .gitignore ├── app │ ├── Token.php │ ├── Http │ │ ├── Middleware │ │ │ ├── EncryptCookies.php │ │ │ ├── VerifyCsrfToken.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ └── Cors.php │ │ ├── Controllers │ │ │ ├── Controller.php │ │ │ ├── Auth │ │ │ │ ├── ResetPasswordController.php │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ └── RegisterController.php │ │ │ ├── ChatController.php │ │ │ ├── UserController.php │ │ │ └── PrivateMessageController.php │ │ └── Kernel.php │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Chat.php │ ├── User.php │ ├── PrivateMessage.php │ ├── Console │ │ └── Kernel.php │ ├── Mail │ │ └── ForgotPassword.php │ └── Exceptions │ │ └── Handler.php ├── package.json ├── tests │ ├── ExampleTest.php │ └── TestCase.php ├── .env.example ├── gulpfile.js ├── server.php ├── phpunit.xml ├── config │ ├── compile.php │ ├── services.php │ ├── view.php │ ├── broadcasting.php │ ├── pusher.php │ ├── filesystems.php │ ├── queue.php │ ├── cache.php │ ├── auth.php │ ├── database.php │ ├── mail.php │ ├── session.php │ └── app.php ├── composer.json ├── artisan └── readme.md └── node_server ├── .gitignore ├── package.json ├── server.js └── yarn.lock /client_labs/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server_labs/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /server_labs/database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /server_labs/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /server_labs/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /server_labs/resources/views/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /client_labs/.eslintignore: -------------------------------------------------------------------------------- 1 | build/*.js 2 | config/*.js 3 | -------------------------------------------------------------------------------- /server_labs/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /server_labs/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /server_labs/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /server_labs/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /server_labs/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /server_labs/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /client_labs/src/assets/css/variables.scss: -------------------------------------------------------------------------------- 1 | $border-color: #e7e7e7; 2 | -------------------------------------------------------------------------------- /server_labs/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /server_labs/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /client_labs/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /client_labs/src/env.example.js: -------------------------------------------------------------------------------- 1 | export const clientId = '' 2 | export const clientSecret = '' 3 | -------------------------------------------------------------------------------- /server_labs/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | -------------------------------------------------------------------------------- /client_labs/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | npm-debug.log 5 | src/env.js 6 | .idea/ 7 | -------------------------------------------------------------------------------- /client_labs/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitavroy/vuespa/HEAD/client_labs/src/assets/logo.png -------------------------------------------------------------------------------- /server_labs/routes/web.php: -------------------------------------------------------------------------------- 1 | Forgot password 2 |
We have rec. a request from you to reset your password.
3 |Click here to reset your password.
4 | -------------------------------------------------------------------------------- /server_labs/app/Token.php: -------------------------------------------------------------------------------- 1 | 2 | export default { 3 | 4 | } 5 | 6 | 7 | 8 |From: {{pmStore.message.sender.email}} {{pmStore.message.sender.created_at}}
38 | 41 |