├── LICENSE ├── README.md ├── config.json ├── pRoute └── index.js └── src ├── .DS_Store ├── actions └── index.js ├── components ├── app.js ├── forgot.js ├── login.js ├── logout.js └── reset_pass.js ├── index.js ├── reducers └── index.js ├── style ├── login.css └── reset_pass.css ├── urls.js └── utils └── index.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-auth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Auth 2 | 3 | > Omniport service frontend 4 | -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-auth/HEAD/config.json -------------------------------------------------------------------------------- /pRoute/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-auth/HEAD/pRoute/index.js -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-auth/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-auth/HEAD/src/actions/index.js -------------------------------------------------------------------------------- /src/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-auth/HEAD/src/components/app.js -------------------------------------------------------------------------------- /src/components/forgot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-auth/HEAD/src/components/forgot.js -------------------------------------------------------------------------------- /src/components/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-auth/HEAD/src/components/login.js -------------------------------------------------------------------------------- /src/components/logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-auth/HEAD/src/components/logout.js -------------------------------------------------------------------------------- /src/components/reset_pass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-auth/HEAD/src/components/reset_pass.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-auth/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-auth/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/style/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-auth/HEAD/src/style/login.css -------------------------------------------------------------------------------- /src/style/reset_pass.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-auth/HEAD/src/style/reset_pass.css -------------------------------------------------------------------------------- /src/urls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-auth/HEAD/src/urls.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMGIITRoorkee/omniport-frontend-auth/HEAD/src/utils/index.js --------------------------------------------------------------------------------