├── LB2 ├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .postcssrc.js ├── README.md ├── build │ ├── build.js │ ├── check-versions.js │ ├── dev-client.js │ ├── dev-server.js │ ├── utils.js │ ├── vue-loader.conf.js │ ├── webpack.base.conf.js │ ├── webpack.dev.conf.js │ ├── webpack.prod.conf.js │ └── webpack.test.conf.js ├── config │ ├── dev.env.js │ ├── index.js │ ├── prod.env.js │ └── test.env.js ├── index.html ├── package.json ├── src │ ├── App.vue │ ├── app.config.js │ ├── assets │ │ ├── external-css │ │ │ ├── bootstrap-vue.css │ │ │ └── bootstrap.css │ │ ├── images │ │ │ └── logo.png │ │ └── scss │ │ │ ├── attribute.scss │ │ │ ├── main.scss │ │ │ └── utility.scss │ ├── components │ │ ├── Hello.vue │ │ ├── admin │ │ │ ├── admin.html │ │ │ ├── admin.scss │ │ │ ├── admin.vue │ │ │ └── adminService.js │ │ ├── footer.vue │ │ ├── header.vue │ │ ├── login │ │ │ ├── login.html │ │ │ ├── login.scss │ │ │ ├── login.vue │ │ │ ├── loginService.js │ │ │ └── resident │ │ │ │ ├── resident.html │ │ │ │ ├── resident.scss │ │ │ │ ├── resident.vue │ │ │ │ └── residentService.js │ │ └── store.js │ ├── main.js │ ├── router │ │ └── index.js │ └── template │ │ └── header.html ├── static │ └── .gitkeep └── test │ ├── e2e │ ├── custom-assertions │ │ └── elementCount.js │ ├── nightwatch.conf.js │ ├── runner.js │ └── specs │ │ └── test.js │ └── unit │ ├── .eslintrc │ ├── index.js │ ├── karma.conf.js │ └── specs │ └── Hello.spec.js └── README.md /LB2/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/.babelrc -------------------------------------------------------------------------------- /LB2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/.editorconfig -------------------------------------------------------------------------------- /LB2/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/.eslintignore -------------------------------------------------------------------------------- /LB2/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/.eslintrc.js -------------------------------------------------------------------------------- /LB2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/.gitignore -------------------------------------------------------------------------------- /LB2/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/.postcssrc.js -------------------------------------------------------------------------------- /LB2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/README.md -------------------------------------------------------------------------------- /LB2/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/build/build.js -------------------------------------------------------------------------------- /LB2/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/build/check-versions.js -------------------------------------------------------------------------------- /LB2/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/build/dev-client.js -------------------------------------------------------------------------------- /LB2/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/build/dev-server.js -------------------------------------------------------------------------------- /LB2/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/build/utils.js -------------------------------------------------------------------------------- /LB2/build/vue-loader.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/build/vue-loader.conf.js -------------------------------------------------------------------------------- /LB2/build/webpack.base.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/build/webpack.base.conf.js -------------------------------------------------------------------------------- /LB2/build/webpack.dev.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/build/webpack.dev.conf.js -------------------------------------------------------------------------------- /LB2/build/webpack.prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/build/webpack.prod.conf.js -------------------------------------------------------------------------------- /LB2/build/webpack.test.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/build/webpack.test.conf.js -------------------------------------------------------------------------------- /LB2/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/config/dev.env.js -------------------------------------------------------------------------------- /LB2/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/config/index.js -------------------------------------------------------------------------------- /LB2/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /LB2/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/config/test.env.js -------------------------------------------------------------------------------- /LB2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/index.html -------------------------------------------------------------------------------- /LB2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/package.json -------------------------------------------------------------------------------- /LB2/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/App.vue -------------------------------------------------------------------------------- /LB2/src/app.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/app.config.js -------------------------------------------------------------------------------- /LB2/src/assets/external-css/bootstrap-vue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/assets/external-css/bootstrap-vue.css -------------------------------------------------------------------------------- /LB2/src/assets/external-css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/assets/external-css/bootstrap.css -------------------------------------------------------------------------------- /LB2/src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/assets/images/logo.png -------------------------------------------------------------------------------- /LB2/src/assets/scss/attribute.scss: -------------------------------------------------------------------------------- 1 | $primary-color:#eb7475; -------------------------------------------------------------------------------- /LB2/src/assets/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/assets/scss/main.scss -------------------------------------------------------------------------------- /LB2/src/assets/scss/utility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/assets/scss/utility.scss -------------------------------------------------------------------------------- /LB2/src/components/Hello.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/components/Hello.vue -------------------------------------------------------------------------------- /LB2/src/components/admin/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/components/admin/admin.html -------------------------------------------------------------------------------- /LB2/src/components/admin/admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/components/admin/admin.scss -------------------------------------------------------------------------------- /LB2/src/components/admin/admin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/components/admin/admin.vue -------------------------------------------------------------------------------- /LB2/src/components/admin/adminService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/components/admin/adminService.js -------------------------------------------------------------------------------- /LB2/src/components/footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/components/footer.vue -------------------------------------------------------------------------------- /LB2/src/components/header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/components/header.vue -------------------------------------------------------------------------------- /LB2/src/components/login/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/components/login/login.html -------------------------------------------------------------------------------- /LB2/src/components/login/login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/components/login/login.scss -------------------------------------------------------------------------------- /LB2/src/components/login/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/components/login/login.vue -------------------------------------------------------------------------------- /LB2/src/components/login/loginService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/components/login/loginService.js -------------------------------------------------------------------------------- /LB2/src/components/login/resident/resident.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/components/login/resident/resident.html -------------------------------------------------------------------------------- /LB2/src/components/login/resident/resident.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/components/login/resident/resident.scss -------------------------------------------------------------------------------- /LB2/src/components/login/resident/resident.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/components/login/resident/resident.vue -------------------------------------------------------------------------------- /LB2/src/components/login/resident/residentService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/components/login/resident/residentService.js -------------------------------------------------------------------------------- /LB2/src/components/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/components/store.js -------------------------------------------------------------------------------- /LB2/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/main.js -------------------------------------------------------------------------------- /LB2/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/src/router/index.js -------------------------------------------------------------------------------- /LB2/src/template/header.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LB2/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LB2/test/e2e/custom-assertions/elementCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/test/e2e/custom-assertions/elementCount.js -------------------------------------------------------------------------------- /LB2/test/e2e/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/test/e2e/nightwatch.conf.js -------------------------------------------------------------------------------- /LB2/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/test/e2e/runner.js -------------------------------------------------------------------------------- /LB2/test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/test/e2e/specs/test.js -------------------------------------------------------------------------------- /LB2/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/test/unit/.eslintrc -------------------------------------------------------------------------------- /LB2/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/test/unit/index.js -------------------------------------------------------------------------------- /LB2/test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/test/unit/karma.conf.js -------------------------------------------------------------------------------- /LB2/test/unit/specs/Hello.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/LB2/test/unit/specs/Hello.spec.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manojkumar3692/Vuejs-Authentication/HEAD/README.md --------------------------------------------------------------------------------